From e6e1e1519f5102bd25300c765491b2a5c2d359b9 Mon Sep 17 00:00:00 2001 From: Junpei Kawamoto Date: Mon, 2 Jan 2023 23:31:51 -0600 Subject: [PATCH] Add newer python versions to tox.ini --- tox.ini | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 2392345..69cd684 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,8 @@ [tox] -envlist = py36,py37 +envlist = py36,py37,py38,py39,py310,py311 skipsdist = true [testenv] -deps = pipenv==2018.11.14 -passenv = HOME -commands = - pipenv sync -d - pipenv run pytest +deps = .[test] +commands = python setup.py test