diff options
author | Donald Stufft <donald@stufft.io> | 2013-05-11 00:07:56 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-05-11 00:07:56 -0400 |
commit | 4ac208442047d925b8e972e22af5d68499c48cf0 (patch) | |
tree | 8a20a8de5e47fb0297948f853af194a5054bc259 /.travis.yml | |
parent | 5dbd3c2425bc271f4497101735f73ee289f96b80 (diff) | |
download | py-bcrypt-git-4ac208442047d925b8e972e22af5d68499c48cf0.tar.gz |
Allow failures for PyPy on Travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 35a1157..e2354e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,3 +12,8 @@ script: branches: only: - master +matrix: + allow_failures: + # Travis-CI currently has PyPy 1.9 which does not have the CFFI backend. + # See: https://github.com/travis-ci/travis-ci/issues/1106 + - python: "PyPy" |