diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 72976c91..0f1b7205 100644 --- a/.travis.yml +++ b/.travis.yml @@ -113,6 +113,7 @@ install: fi - if [[ "${PYTHON_VM}" != ipy ]]; then pip install --upgrade nose coverage coveralls; + pip install nose-ignore-docstring; fi script: @@ -144,9 +145,9 @@ script: # Run nosetests. - if [[ "${PYTHON_VM}" != ipy ]]; then if [[ "${PYTHON_VM}" == pypy ]]; then - nosetests --verbosity=2; + nosetests --verbosity=2 --with-ignore-docstrings; else - nosetests --verbosity=2 --with-coverage --cover-package=networkx; + nosetests --verbosity=2 --with-ignore-docstrings --with-coverage --cover-package=networkx; fi; else mono "${IPY}" -X:ExceptionDetail -X:FullFrames -c 'from nose import main; main()' \--verbosity=2; |