Set up check-manifest and check-python-versions on CI

This commit is contained in:
Marius Gedminas 2020-12-08 12:34:21 +02:00
parent 6e37208785
commit 49a9af2e99
2 changed files with 12 additions and 0 deletions

View file

@ -76,6 +76,8 @@ jobs:
toxenv:
- flake8
- isort
- check-manifest
- check-python-versions
steps:
- name: Git clone

10
tox.ini
View file

@ -24,3 +24,13 @@ commands = flake8 findimports.py setup.py tests.py testsuite.py
deps = isort
skip_install = true
commands = isort {posargs: -c --diff findimports.py setup.py tests.py testsuite.py}
[testenv:check-manifest]
deps = check-manifest
skip_install = true
commands = check-manifest {posargs}
[testenv:check-python-versions]
deps = check-python-versions
skip_install = true
commands = check-python-versions {posargs}