Move dummy test to test/ and run with nosetests

This commit is contained in:
hugovk 2014-06-03 18:04:27 +03:00
parent 8b28c2c2f0
commit cd967680cb
2 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,7 @@ python:
install:
- "sudo apt-get -qq install libfreetype6-dev liblcms2-dev python-qt4 ghostscript libffi-dev cmake"
- "pip install cffi"
- "pip install coveralls"
- "pip install coveralls nose"
# webp
- pushd depends && ./install_webp.sh && popd
@ -35,6 +35,8 @@ script:
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then coverage run --append --include=PIL/* selftest.py; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "pypy" ]; then python Tests/run.py --coverage; fi
- nosetests test/
after_success:
- coverage report
- coveralls