From d4e834f7a160480ae24c54cd7f7b48a8cc4e33d4 Mon Sep 17 00:00:00 2001 From: "Terence D. Honles" Date: Tue, 31 Mar 2020 13:21:10 -0700 Subject: [PATCH] update tox.ini to match pythons supported and allow flags for pytest --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index c6fa928105cd..8696a8e0a91a 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py35, py36 +envlist = py36, py37, py38 [testenv] changedir = /tmp @@ -14,7 +14,7 @@ setenv = PIP_ISOLATED = 1 usedevelop = True commands = - pytest --pyargs matplotlib + pytest --pyargs matplotlib {posargs} deps = pytest