Tool to check the completeness of MANIFEST.in for Python packages
https://pypi.org/p/check-manifest
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
937 B
47 lines
937 B
[tox] |
|
envlist = |
|
py37,py38,py39,py310,py311,pypy3,flake8 |
|
|
|
[testenv] |
|
passenv = LANG LC_CTYPE LC_ALL MSYSTEM |
|
extras = test |
|
commands = |
|
pytest {posargs} |
|
|
|
[testenv:coverage] |
|
deps = |
|
coverage |
|
commands = |
|
coverage run -m pytest |
|
coverage report -m --fail-under=100 |
|
|
|
[testenv:check-manifest] |
|
basepython = python3 |
|
skip_install = true |
|
deps = check-manifest |
|
commands = check-manifest {posargs} |
|
|
|
[testenv:check-python-versions] |
|
basepython = python3 |
|
skip_install = true |
|
deps = check-python-versions |
|
commands = check-python-versions {posargs} |
|
|
|
[testenv:flake8] |
|
basepython = python3 |
|
skip_install = true |
|
deps = flake8 |
|
commands = flake8 {posargs:check_manifest.py setup.py tests.py} |
|
|
|
[testenv:mypy] |
|
basepython = python3 |
|
skip_install = true |
|
deps = |
|
mypy |
|
commands = mypy {posargs:check_manifest.py} |
|
|
|
[testenv:isort] |
|
basepython = python3 |
|
skip_install = true |
|
deps = isort |
|
commands = isort {posargs: -c check_manifest.py setup.py tests.py}
|
|
|