From df3bdf231d5bfa220a4e7996a798a52cba769a8d Mon Sep 17 00:00:00 2001 From: Jan Vlcinsky Date: Mon, 2 Apr 2018 22:50:14 +0200 Subject: [PATCH] Simplified call to pytest in tox.ini (issue #139) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index d6f1cc4..fb6ffb8 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ envlist = py27, py34, py35, py36 deps = pipenv commands= pipenv install --dev --ignore-pipfile - pipenv run pytest tests/ {posargs} + pytest tests/ {posargs} [testenv:py27] basepython = python2.7