We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db2eec9 + 8c11470 commit ebfe1c5Copy full SHA for ebfe1c5
run_automated_tests.sh
@@ -1,9 +1,11 @@
1
#!/bin/bash
2
TEST_FILENAME=${TEST_FILENAME:-nosetests.xml}
3
-if [ ! -f "/EON" ]; then
+if [ -f "/EON" ]; then
4
TESTSUITE_NAME="Panda_Test-EON"
5
+ TEST_SCRIPTS=$(ls tests/automated/$1*.py | grep -v "wifi")
6
else
7
TESTSUITE_NAME="Panda_Test-DEV"
8
+ TEST_SCRIPTS=$(ls tests/automated/$1*.py)
9
fi
10
11
cd boardesp
@@ -16,4 +18,4 @@ do
16
18
nmcli connection delete "$NAME"
17
19
done
20
-PYTHONPATH="." python $(which nosetests) -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s tests/automated/$1*.py
21
+PYTHONPATH="." python $(which nosetests) -v --with-xunit --xunit-file=./$TEST_FILENAME --xunit-testsuite-name=$TESTSUITE_NAME -s $TEST_SCRIPTS
0 commit comments