summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-06-29 08:56:54 -0500
committerGitHub <noreply@github.com>2017-06-29 08:56:54 -0500
commitd8c65478053f2b12a9a7a1abe0b291d51af54653 (patch)
treeceab05571416b62cd47652e97175fa0c1f8f2bc4 /tox.ini
parent7c5880be8dcdd22b51920d2248055db3f386565e (diff)
parentefb35f1e6ea296499274ed8fc5c2d023f8ed71e6 (diff)
downloadpyramid-d8c65478053f2b12a9a7a1abe0b291d51af54653.tar.gz
pyramid-d8c65478053f2b12a9a7a1abe0b291d51af54653.tar.bz2
pyramid-d8c65478053f2b12a9a7a1abe0b291d51af54653.zip
Merge pull request #3111 from mmerickel/check-manifest
add a manifest and a tox step to check it
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini17
1 files changed, 12 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 242decfc4..4e1b4f728 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,9 +1,8 @@
[tox]
envlist =
- py27,py34,py35,py36,py37,pypy,
- docs,pep8,
- {py2,py3}-cover,coverage,
-skip_missing_interpreters = True
+ lint,
+ py27,py34,py35,py36,pypy,
+ docs,{py2,py3}-cover,coverage,
[testenv]
# Most of these are defaults but if you specify any you can't fall back
@@ -52,14 +51,20 @@ commands =
python pyramid/scaffolds/tests.py
deps = virtualenv
-[testenv:pep8]
+[testenv:lint]
+skip_install = True
basepython = python3.5
commands =
flake8 pyramid/
+ python setup.py check -r -s -m
+ check-manifest
deps =
flake8
+ readme_renderer
+ check-manifest
[testenv:docs]
+skip_install = True
basepython = python3.5
whitelist_externals = make
commands =
@@ -67,6 +72,7 @@ commands =
make -C docs doctest html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E"
[testenv:pdf]
+skip_install = True
basepython = python3.5
whitelist_externals = make
commands =
@@ -93,6 +99,7 @@ setenv =
COVERAGE_FILE=.coverage.py3
[testenv:coverage]
+skip_install = True
basepython = python3.5
commands =
coverage erase