We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9860be4 commit 1ece137Copy full SHA for 1ece137
1 file changed
solid/test/run_all_tests.sh
@@ -4,15 +4,16 @@
4
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
5
cd $DIR
6
7
+export PYTHONPATH="../../":$PYTHONPATH
8
# Run all tests. Note that unittest's built-in discovery doesn't run the dynamic
9
# testcase generation they contain
10
for i in test_*.py;
11
do
12
echo $i;
- python $i;
13
+ python3 $i;
14
echo
15
done
16
17
18
# revert to original dir
-cd -
19
+cd -
0 commit comments