We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e84d258 commit 3f26badCopy full SHA for 3f26bad
.github/workflows/test-and-deploy.yml
@@ -48,7 +48,7 @@ jobs:
48
49
- name: Test Evaluation Function
50
run: |
51
- pytest -v app/evaluation_tests.py::TestEvaluationFunction
+ pytest -v evaluation_tests.py::TestEvaluationFunction
52
53
- name: Test Preview Function
54
app/evaluation_tests.py
@@ -1,4 +1,8 @@
1
import unittest
2
+import sys
3
+import os
4
+sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
5
+
6
7
try:
8
from evaluation import Params, evaluation_function
0 commit comments