Skip to content

Commit

Permalink
Set up check-manifest and check-python-versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Dec 8, 2020
1 parent 13cca67 commit cc3cd15
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jobs:
toxenv:
- flake8
- isort
- check-manifest
- check-python-versions

steps:
- name: Git clone
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ include *.rst
include .coveragerc
include .gitignore
include .travis.yml
include appveyor.yml
include LICENSE
include Makefile
include pytest.ini
Expand Down
10 changes: 10 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,13 @@ commands = flake8 setup.py multiping.py
deps = isort
skip_install = true
commands = isort {posargs: -c --diff multiping.py setup.py tests.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}

0 comments on commit cc3cd15

Please sign in to comment.