Use pytest instead of py.test

This commit is contained in:
Adrian Moennich 2016-08-29 11:12:46 +02:00
parent a450292342
commit 96531f9446
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ install:
- cd "${TRAVIS_BUILD_DIR}/${PLUGIN}"
- python setup.py develop
script:
- py.test
- pytest
notifications:
email: false
irc:

View File

@ -2,6 +2,6 @@
for dir in $(find -name pytest.ini -exec dirname {} \;); do
pushd "$dir" >/dev/null
py.test "$@"
pytest "$@"
popd >/dev/null
done