From 50445f424e2fb1bba2fbe03e6f316f94f7a29941 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 27 Oct 2017 23:16:27 +0200 Subject: [PATCH] tox.ini: prefer pytest without a dot --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 6d3d5bf..1f24704 100644 --- a/tox.ini +++ b/tox.ini @@ -10,11 +10,11 @@ setenv = # tox corrupts __pycache__, solution from here: PYTHONDONTWRITEBYTECODE=1 commands = - py.test {posargs:parso test} + pytest {posargs:parso test} [testenv:cov] deps = coverage {[testenv]deps} commands = - coverage run --source parso -m py.test + coverage run --source parso -m pytest coverage report