Skip to content

Commit

Permalink
Allow failures on Pypy3
Browse files Browse the repository at this point in the history
Pypy3's been breaking pretty regularly due to an import error:

    ImportError: cannot import name 'pythonapi'
    make: *** [init] Error 1

Here we (temporarily) allow it to fail in the build matrix so that we
can get the general build back to green.
  • Loading branch information
brandur committed Jan 26, 2019
1 parent 660bd94 commit 17ece0c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ matrix:
- python: "pypy"
- python: "pypy3"

# There's a Pipenv issue that currently prevents stripe-python from building
# properly on Pypy3:
#
# https://github.com/pypa/pipenv/pull/3322
#
# Olivier patched it, but we're still waiting on the Pipenv project for a new
# release. When that happens, we can remove this `allow_failures` section.
allow_failures:
- python: "pypy3"

cache:
directories:
- stripe-mock
Expand Down

0 comments on commit 17ece0c

Please sign in to comment.