Skip to content

Commit

Permalink
Try using PyPy on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyBanks committed May 9, 2014
1 parent d7c390e commit c1a7f09
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: python
python:
- '2.7'
- 'pypy'
install:
- pip install .
script:
Expand Down

2 comments on commit c1a7f09

@banksJeremy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This failed for an unclear reason on @Manishearth's Travis, thought it passed on mine.

I was tempted to try this to see if we're relying on CPython's reference-counting semantics, which are kind-of supposed to be considered an implementation detail and aren't followed by PyPy. But that's not really justification enough for hitting Stack Exchange with twice as many requests (and concurrently!).

I'd almost be tempted to only test with PyPy, because anything that works with it it almost certain to also work with CPython. But that might be a bit strange.

@Manishearth
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hit retry, it seemed to work the second time. Might have been one of those intermittent failures.

Please sign in to comment.