From 5422d14f931d2759fdf1014ce9b183ef738bb9e7 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 3 Nov 2019 14:12:46 -0800 Subject: [PATCH] Add Python 3.8. --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index d84b4b0d..ba05b15d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37 +envlist = py35,py36,py37,py38 skip_missing_interpreters = True skipsdist = True minversion = 3.14.0 @@ -14,13 +14,13 @@ commands_pre = find {toxinidir} -type f -not -path '{toxinidir}/.tox/*' -path '*/__pycache__/*' -name '*.py[c|o]' -delete commands = pytest {posargs} - py36,py37: black --check . + py36,py37,py38: black --check . isort --recursive --check-only --settings-path setup.cfg . flake8 borgmatic tests [testenv:black] commands = - black {posargs} . + py36,py37,py38: black {posargs} . [testenv:test] commands =