Skip to content

Commit

Permalink
run nose with --verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Feb 16, 2018
1 parent 9dff528 commit 57f24e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/selenium_tests/travis_wrapper.sh
Expand Up @@ -6,14 +6,15 @@

set +e

nosetests --stop .
NOSEOPTS="--verbose --stop"
nosetests $NOSEOPTS .
FIRST_RUN_STATUS=$?

if [[ $FIRST_RUN_STATUS -ne 0 ]]; then
echo
echo ============= FIRST SELENIUM RUN FAILED, RETRYING TO MAKE SURE ===============
echo
nosetests --stop .
nosetests $NOSEOPTS .
SECOND_RUN_STATUS=$?
if [[ $SECOND_RUN_STATUS -ne 0 ]]; then
echo ============= SELENIUM TEST FAILED ON SECOND RUN ==============
Expand Down

0 comments on commit 57f24e1

Please sign in to comment.