summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Peuch <cortex@worlddomination.be>2020-04-01 14:44:25 +0200
committerLaurent Peuch <cortex@worlddomination.be>2020-04-01 14:44:25 +0200
commitea907d239e9c5e1555e4d9f43cb301a46a0f12a6 (patch)
treed408aee766dc9eb80d91f03d31859669950c5a02
parent0509e03d3f295862ca15986c004ae6c48917b15f (diff)
downloadlogilab-common-ea907d239e9c5e1555e4d9f43cb301a46a0f12a6.tar.gz
add check-manifest to tox
-rw-r--r--tox.ini9
1 files changed, 8 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 5cf714b..acc1cf5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist=py3,mypy,flake8,black,black-run
+envlist=py3,check-manifest,mypy,flake8,black,black-run
[testenv]
deps =
@@ -15,6 +15,13 @@ deps =
commands=
{envpython} -m sphinx -b html {toxinidir}/docs {toxinidir}/docs/_build/html {posargs}
+[testenv:check-manifest]
+skip_install = true
+deps =
+ check-manifest
+commands =
+ {envpython} -m check_manifest {toxinidir}
+
[testenv:mypy]
deps =
mypy >= 0.761