diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-30 15:11:25 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-30 15:11:25 -0700 |
commit | 9efa989d096fad71e8b0889cbe5f4a287eee0e46 (patch) | |
tree | 3d9662784a3fcb0f84615afc166fb874ae4c1964 | |
parent | e2ac563c990b204b96d4a560153f05e95804b3e9 (diff) | |
download | cryptography-9efa989d096fad71e8b0889cbe5f4a287eee0e46.tar.gz cryptography-9efa989d096fad71e8b0889cbe5f4a287eee0e46.tar.bz2 cryptography-9efa989d096fad71e8b0889cbe5f4a287eee0e46.zip |
A tox thing which attempts to check for errors (should be failing now)
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | tox.ini | 10 |
2 files changed, 10 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index defcd77b..f68d5ff6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: python python: 2.7 env: + - TOX_ENV=cffi - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,pypy,py32,py33,docs,pep8 +envlist = cffi,py26,py27,pypy,py32,py33,docs,pep8 [testenv] deps = @@ -7,6 +7,14 @@ deps = pretend commands = py.test --cov=cryptography/ --cov=tests/ +[testenv:cffi] +basepython = python2.7 +install_command = +setenv = + CFLAGS="-Wall -Wconversion -Wpedantic -Werror" +commands = + python -c "import cryptography.bindings.openssl" + [testenv:docs] deps = sphinx basepython = python2.7 |