diff options
author | David Reid <dreid@dreid.org> | 2013-10-31 14:58:24 -0700 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-10-31 14:58:24 -0700 |
commit | 0e5fd074b79f6dc86bcc643772b731594bcbb011 (patch) | |
tree | f76c273c4f09cc0782c4c6cd904a3c2834a240e7 | |
parent | 6adaf277a100412826af6c8cdd31753832c5609a (diff) | |
parent | c510e49ca1207e610487bbe3930048620f435648 (diff) | |
download | cryptography-0e5fd074b79f6dc86bcc643772b731594bcbb011.tar.gz cryptography-0e5fd074b79f6dc86bcc643772b731594bcbb011.tar.bz2 cryptography-0e5fd074b79f6dc86bcc643772b731594bcbb011.zip |
Merge pull request #206 from alex/py3pep8
Added a tox/travis just for running flake8 under py3k
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | tox.ini | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 97105375..cf6ecefa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ env: - TOX_ENV=pypy CC=clang - TOX_ENV=docs - TOX_ENV=pep8 + - TOX_ENV=py3pep8 install: - "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true" @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,pypy,py32,py33,docs,pep8 +envlist = py26,py27,pypy,py32,py33,docs,pep8,py3pep8 [testenv] deps = @@ -22,5 +22,10 @@ commands = deps = flake8 commands = flake8 . +[testenv:py3pep8] +basepython = python3.3 +deps = flake8 +commands = flake8 . + [flake8] exclude = .tox,*.egg |