Skip to content

Commit

Permalink
fix inverted logic to differentiate between dev and EON panda builds
Browse files Browse the repository at this point in the history
  • Loading branch information
adeebshihadeh committed Jul 3, 2019
1 parent 36755a0 commit 64e18e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_automated_tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
TEST_FILENAME=${TEST_FILENAME:-nosetests.xml}
if [ ! -f "/EON" ]; then
if [ -f "/EON" ]; then
TESTSUITE_NAME="Panda_Test-EON"
TEST_SCRIPTS=$(ls tests/automated/$1*.py | grep -v "wifi")
else
Expand Down

0 comments on commit 64e18e8

Please sign in to comment.