diff options
author | Brian Warner <warner@lothar.com> | 2016-11-16 15:35:36 -0800 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2016-11-16 15:35:36 -0800 |
commit | b3994ac8ea9e1e7b3b3c59b4f647dc3ca3b1e765 (patch) | |
tree | fabf0af6b6ec305d42ad26109968068a372c89ec | |
parent | a3f10fbfd210fa0f538c0bfecbcf03b871c04810 (diff) | |
download | ecdsa-tox.tar.gz |
travis: tolerate pypy3 failuretox
because the travis pypy3 is basically python-3.2.5, and pip rejects
3.2.x . The tests would actually pass on 3.2, if pip would allow it.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 9f70322..ed84b6a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,3 +18,7 @@ script: - tox -e speed after_success: - coveralls + +matrix: + allow_failures: + - python: "pypy3" |