From f6044e548124a730eba8c6f1fb24a4512255a3a6 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 25 May 2018 15:01:35 -0700 Subject: [PATCH] pytest: drop the dot! Committed via https://github.com/asottile/all-repos --- .travis.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a1bd3871..926f20ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ python: install: - pip install -rrequirements-dev.txt coveralls script: -- COVERAGE_PROCESS_START=$PWD/.coveragerc py.test sasstests.py +- COVERAGE_PROCESS_START=$PWD/.coveragerc pytest sasstests.py - coverage combine - coverage report - flake8 . diff --git a/tox.ini b/tox.ini index cac9ed40..e9bd936d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,5 +4,5 @@ envlist = pypy, pypy3, py27, py34, py35, py36 [testenv] deps = -rrequirements-dev.txt commands = - py.test sasstests.py + pytest sasstests.py flake8 .