From 96531f94467730dfdb5409d96b97ae9e25fe3bda Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Mon, 29 Aug 2016 11:12:46 +0200 Subject: [PATCH] Use pytest instead of py.test --- .travis.yml | 2 +- run-tests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 60e79dd..77d7863 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ install: - cd "${TRAVIS_BUILD_DIR}/${PLUGIN}" - python setup.py develop script: - - py.test + - pytest notifications: email: false irc: diff --git a/run-tests.sh b/run-tests.sh index 86b77b7..b2201c2 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -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