From f58a49122d37b74e192e4f61c82b9558e071dc8e Mon Sep 17 00:00:00 2001 From: Yuya Unno Date: Wed, 16 Aug 2017 09:25:29 +0900 Subject: [PATCH] Ignore DeprecationWarning in inspect --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cdf996a5151d..1362500d4ac5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,7 +59,7 @@ script: - autopep8 -r . --global-config .pep8 --diff | tee check_autopep8 - test ! -s check_autopep8 - cd tests - - PYTHONWARNINGS='ignore::FutureWarning,error::DeprecationWarning,ignore::DeprecationWarning:nose.importer,ignore::DeprecationWarning:site' nosetests -a '!gpu,!slow' --with-doctest chainer_tests + - PYTHONWARNINGS='ignore::FutureWarning,error::DeprecationWarning,ignore::DeprecationWarning:nose.importer,ignore::DeprecationWarning:site,ignore::DeprecaitonWarning:inspect' nosetests -a '!gpu,!slow' --with-doctest chainer_tests - if [[ $TRAVIS_OS_NAME == "linux" ]]; then cd ..; READTHEDOCS=True python setup.py develop;