diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-06 14:10:59 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-03-06 14:10:59 -0800 |
commit | 8b347932fb3612e622d07643af62ed939976b9cb (patch) | |
tree | 72837619ab4e9064ff50649f245ed3ee316ce66e /tox.ini | |
parent | 25d24de1417844f95b247365a3fb24f17bf120ff (diff) | |
parent | 1e8aa9b09351bf0fb47bed24defc4d9f37560e31 (diff) | |
download | cryptography-8b347932fb3612e622d07643af62ed939976b9cb.tar.gz cryptography-8b347932fb3612e622d07643af62ed939976b9cb.tar.bz2 cryptography-8b347932fb3612e622d07643af62ed939976b9cb.zip |
Merge branch 'master' into exception-heirarchy-refactor
Conflicts:
cryptography/hazmat/backends/openssl/backend.py
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -22,23 +22,33 @@ commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html sphinx-build -W -b latex -d {envtmpdir}/doctrees docs docs/_build/latex sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html - sphinx-build -W -b linkcheck docs docs/_build/html sphinx-build -W -b spelling docs docs/_build/html +[testenv:docs-linkcheck] +deps = + sphinx +basepython = python2.7 +commands = + sphinx-build -W -b linkcheck docs docs/_build/html + # Temporarily disable coverage on pypy because of performance problems with # coverage.py on pypy. [testenv:pypy] commands = py.test --capture=no --strict {posargs} [testenv:pep8] -deps = flake8 +deps = + flake8 + pep8-naming commands = flake8 . [testenv:py3pep8] basepython = python3.3 -deps = flake8 +deps = + flake8 + pep8-naming commands = flake8 . [flake8] exclude = .tox,*.egg -select = E,W,F +select = E,W,F,N |