Skip to content

Commit 3f26bad

Browse files
minor change
1 parent e84d258 commit 3f26bad

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: Test Evaluation Function
5050
run: |
51-
pytest -v app/evaluation_tests.py::TestEvaluationFunction
51+
pytest -v evaluation_tests.py::TestEvaluationFunction
5252
5353
- name: Test Preview Function
5454
run: |

app/evaluation_tests.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
import unittest
2+
import sys
3+
import os
4+
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
5+
26

37
try:
48
from evaluation import Params, evaluation_function

0 commit comments

Comments
 (0)