Skip to content

Commit

Permalink
Merge pull request #112 from chainer/avoid-false-success-on-travis
Browse files Browse the repository at this point in the history
Fix the false success on Travis-CI
  • Loading branch information
iwiwi authored Aug 25, 2017
2 parents ede666c + 49e45b5 commit e8eab82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ script:
- flake8 --config=.flake8.cython .
- autopep8 -r . --global-config .pep8 | tee check_autopep8
- test ! -s check_autopep8
- for NP in 1 2 3; do PYTHONWARNINGS='ignore::FutureWarning,module::DeprecationWarning' mpiexec -n ${NP} nosetests -v -a '!nccl,!gpu'; done
- (for NP in 1 2 3; do PYTHONWARNINGS='ignore::FutureWarning,module::DeprecationWarning' mpiexec -n ${NP} nosetests -v -a '!nccl,!gpu' || exit $?; done)
# - cd tests
# - PYTHONWARNINGS='ignore::FutureWarning,module::DeprecationWarning' nosetests -a '!gpu,!slow' --with-doctest chainer_tests
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then
Expand Down

0 comments on commit e8eab82

Please sign in to comment.