aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDanny Hermes <daniel.j.hermes@gmail.com>2015-08-13 13:15:06 -0700
committerDanny Hermes <daniel.j.hermes@gmail.com>2015-08-13 18:43:22 -0700
commit9b07670103447f5678f13f10bf5fe7387fc0d8ea (patch)
treeb5ea70dd4f1796b5e32942a0c74d9813155d6a0b /tox.ini
parentdd0f89166828a7d2e36ddd8fa05853384c597c26 (diff)
downloadoauth2client-9b07670103447f5678f13f10bf5fe7387fc0d8ea.tar.gz
Making sure libgmp is ignored in pypy tox env.
This is because when libgmp is detected, installing PyCrypto tries to build _fastmath.c. But in PyPy this fails because _fastmath.c tries to access parts of the CPython implementation. See for `with_gmp=no` suggestion: https://github.com/dlitz/pycrypto/pull/59#issuecomment-86569001
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f749536..d42202c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,7 +12,9 @@ basedeps = keyring
flask
deps = {[testenv]basedeps}
django
-setenv = PYTHONPATH=../google_appengine
+setenv =
+ PYTHONPATH=../google_appengine
+ pypy: with_gmp=no
commands = nosetests --ignore-files=test_appengine\.py {posargs}
[testenv:cover]