summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Iversen <teh.ivo@gmail.com>2015-10-01 02:00:01 +1000
committerMatt Iversen <teh.ivo@gmail.com>2015-10-01 02:00:01 +1000
commit2b703d68e803c8f34019f27ae0ffc5d76c82f2dd (patch)
tree1c4781dfc86a6dc6ef6d14e6245166bb0b052d42
parentfe28652e63ebd0eb024e53e525ac8f4c15dfd9d1 (diff)
parentd99342982459377ff6dd12cb27085798d6268255 (diff)
downloadpip-2b703d68e803c8f34019f27ae0ffc5d76c82f2dd.tar.gz
Merge pull request #3145 from pypa/check-long_description
Check long_description is valid
-rw-r--r--tox.ini8
1 files changed, 6 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index fe03b70a6..abbd70c8a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -20,8 +20,12 @@ basepython = python2.7
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:packaging]
-deps = check-manifest
-commands = check-manifest
+deps =
+ check-manifest
+ readme
+commands =
+ check-manifest
+ python setup.py check -m -r -s
[testenv:pep8]
basepython = python2.7