Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2493 from jcasner/master
Browse files Browse the repository at this point in the history
continue the tests patrol even on failures
  • Loading branch information
rhyolight committed Aug 25, 2015
2 parents 8b300a8 + d37a73f commit e1092e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/travis/script-run-tests.sh
Expand Up @@ -28,10 +28,10 @@ echo
${TRAVIS_BUILD_DIR}/bin/py_region_test || exit

# Python unit tests and prep for coveralls reporting
${TRAVIS_BUILD_DIR}/scripts/run_nupic_tests -u --coverage || exit
${TRAVIS_BUILD_DIR}/scripts/run_nupic_tests -u --coverage --failfast || exit

mv ${TRAVIS_BUILD_DIR}/.coverage ${TRAVIS_BUILD_DIR}/.coverage_unit
# Python integration tests and prep for coveralls reporting
${TRAVIS_BUILD_DIR}/scripts/run_nupic_tests -i --coverage || exit
${TRAVIS_BUILD_DIR}/scripts/run_nupic_tests -i --coverage --failfast || exit

mv ${TRAVIS_BUILD_DIR}/.coverage ${TRAVIS_BUILD_DIR}/.coverage_integration
2 changes: 1 addition & 1 deletion scripts/run_nupic_tests
Expand Up @@ -132,7 +132,7 @@ parser.add_option(
"-x",
"--failfast",
action="store_true",
default=True,
default=False,
dest="failfast")


Expand Down

0 comments on commit e1092e4

Please sign in to comment.