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 7e5523b commit efb5fe8Copy full SHA for efb5fe8
crates/python/run-tests.sh
@@ -10,10 +10,10 @@ export OSTYPE=linux
10
. env/bin/activate
11
pip install -r requirements.txt
12
python setup.py develop
13
-python tests/test_solve.py
+PYTHONPATH=. python tests/test_solve.py
14
15
# About to test cli
16
-OUTPUT=`echo 14 | ./env/bin/advent-of-code-py 2019 1 1`
+OUTPUT=`echo 14 | PYTHONPATH=. ./env/bin/advent-of-code-py 2019 1 1`
17
if [ "${OUTPUT}" != 2 ]; then
18
echo "Incorrect output: $OUTPUT"
19
exit 1
0 commit comments