Skip to content
Snippets Groups Projects
Commit ad979831 authored by Brian Warner's avatar Brian Warner
Browse files

Merge pull request #72 from pyca/check-manifest

Check MANIFEST.in automatically
parents b5b67b86 cfa56de2
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ env:
- TOXENV=py33 SODIUM_INSTALL=system CC=clang
- TOXENV=pypy SODIUM_INSTALL=system CC=clang
- TOXENV=docs
- TOXENV=pep8
- TOXENV=meta
install:
# Add the PyPy repository
......
[tox]
envlist = py26,py27,pypy,py32,py33,docs,pep8
envlist = py26,py27,pypy,py32,py33,docs,meta
[testenv]
deps =
......@@ -19,9 +19,13 @@ commands =
sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
sphinx-build -W -b linkcheck docs docs/_build/html
[testenv:pep8]
deps = flake8
commands = flake8 .
[testenv:meta]
deps =
flake8
check-manifest
commands =
flake8 .
check-manifest . --ignore .travis.yml
[flake8]
select = E,W,F
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment