Add Python 3.8.
This commit is contained in:
parent
e6d8c736d0
commit
5422d14f93
1 changed files with 3 additions and 3 deletions
6
tox.ini
6
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py35,py36,py37
|
envlist = py35,py36,py37,py38
|
||||||
skip_missing_interpreters = True
|
skip_missing_interpreters = True
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
minversion = 3.14.0
|
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
|
find {toxinidir} -type f -not -path '{toxinidir}/.tox/*' -path '*/__pycache__/*' -name '*.py[c|o]' -delete
|
||||||
commands =
|
commands =
|
||||||
pytest {posargs}
|
pytest {posargs}
|
||||||
py36,py37: black --check .
|
py36,py37,py38: black --check .
|
||||||
isort --recursive --check-only --settings-path setup.cfg .
|
isort --recursive --check-only --settings-path setup.cfg .
|
||||||
flake8 borgmatic tests
|
flake8 borgmatic tests
|
||||||
|
|
||||||
[testenv:black]
|
[testenv:black]
|
||||||
commands =
|
commands =
|
||||||
black {posargs} .
|
py36,py37,py38: black {posargs} .
|
||||||
|
|
||||||
[testenv:test]
|
[testenv:test]
|
||||||
commands =
|
commands =
|
||||||
|
|
Loading…
Reference in a new issue