aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-04-20 14:41:14 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-04-20 14:41:14 -0700
commit8f70f8c94739b0fe9719fc8c1a21f2bcf07a6e13 (patch)
treed7473fe07675b66e812fd00ac6ce24bcabccd892 /tox.ini
parentb8ba9e0fe330e213a93bd32b1368bf839d4d9ec7 (diff)
parent707b0085cb1034e6a8e6faed6a78bc675b878fd4 (diff)
downloadcryptography-8f70f8c94739b0fe9719fc8c1a21f2bcf07a6e13.tar.gz
cryptography-8f70f8c94739b0fe9719fc8c1a21f2bcf07a6e13.tar.bz2
cryptography-8f70f8c94739b0fe9719fc8c1a21f2bcf07a6e13.zip
Merge pull request #838 from public/import-order-lint
Enable import order linter
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 5 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 78b8b4c6..da959955 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,8 +17,8 @@ commands =
deps =
pyenchant
sphinx
- sphinxcontrib-spelling
sphinx_rtd_theme
+ sphinxcontrib-spelling
basepython = python2.7
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
@@ -42,6 +42,7 @@ commands =
[testenv:pep8]
deps =
flake8
+ flake8-import-order
pep8-naming
commands = flake8 .
@@ -49,9 +50,11 @@ commands = flake8 .
basepython = python3.3
deps =
flake8
+ flake8-import-order
pep8-naming
commands = flake8 .
[flake8]
exclude = .tox,*.egg
-select = E,W,F,N
+select = E,W,F,N,I
+application-import-names = cryptography,cryptography_vectors,tests