From f9b384ebc219ff6cf431e8631446d28ba78b34b8 Mon Sep 17 00:00:00 2001 From: Yuan Jing Vincent Yan Date: Sat, 27 Oct 2018 13:07:14 -0400 Subject: [PATCH] Drop the dot when invoking pytest --- .travis.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f5e706eb..8e5756af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ script: if [[ "$WHEELHOUSE" == "1" ]]; then bash tests/test-wheelhouses.sh else - py.test -s + pytest -s auditwheel lddtree $(python -c 'import sys; print(sys.executable)') fi diff --git a/tox.ini b/tox.ini index 9afb4d84..451d6eed 100644 --- a/tox.ini +++ b/tox.ini @@ -6,4 +6,4 @@ envlist = py34,py35 [testenv] deps = . -r{toxinidir}/test-requirements.txt -commands = py.test --doctest-modules auditwheel tests +commands = pytest --doctest-modules auditwheel tests