From a241a5742ff102dcc552611ced3512e8a9044bc8 Mon Sep 17 00:00:00 2001 From: c-bata Date: Sun, 15 Nov 2020 23:15:04 +0900 Subject: [PATCH] Refactor tox.ini --- tox.ini | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 9a6d7ce1..980b432e 100644 --- a/tox.ini +++ b/tox.ini @@ -8,18 +8,21 @@ envlist = black mypy -[testenv] -basepython = python3.9 -commands = python -m unittest - [testenv:py36] basepython = python3.6 +commands = python -m unittest [testenv:py37] basepython = python3.7 +commands = python -m unittest [testenv:py38] basepython = python3.8 +commands = python -m unittest + +[testenv:py39] +basepython = python3.9 +commands = python -m unittest [testenv:flake8] deps = flake8