Skip to content

Commit 27ad768

Browse files
committed
Enable pypy builds in travis
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 2eca243 commit 27ad768

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.travis.install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ if [[ $RUN == nosetests ]]; then
2828
# test specific dependencies
2929
pip install mock
3030
;;
31+
pypy)
32+
# test specific dependencies
33+
pip install mock
34+
;;
3135
esac
3236
# build and install
3337
python setup.py install

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,19 @@ python:
99
- "2.7"
1010
- "3.3"
1111
- "3.4"
12+
- "pypy"
13+
- "pypy3"
1214

1315
env:
1416
- RUN=nosetests
1517
- RUN=build_sphinx
1618

19+
matrix:
20+
fast_finish: true
21+
allow_failures:
22+
- python: "pypy"
23+
- python: "pypy3"
24+
1725
install:
1826
- ./.travis.install.sh
1927

0 commit comments

Comments
 (0)