aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-06 14:10:59 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-06 14:10:59 -0800
commit8b347932fb3612e622d07643af62ed939976b9cb (patch)
tree72837619ab4e9064ff50649f245ed3ee316ce66e /tox.ini
parent25d24de1417844f95b247365a3fb24f17bf120ff (diff)
parent1e8aa9b09351bf0fb47bed24defc4d9f37560e31 (diff)
downloadcryptography-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.ini18
1 files changed, 14 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 4248db38..3ee449f1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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