We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eca243 commit 27ad768Copy full SHA for 27ad768
.travis.install.sh
@@ -28,6 +28,10 @@ if [[ $RUN == nosetests ]]; then
28
# test specific dependencies
29
pip install mock
30
;;
31
+ pypy)
32
+ # test specific dependencies
33
+ pip install mock
34
+ ;;
35
esac
36
# build and install
37
python setup.py install
.travis.yml
@@ -9,11 +9,19 @@ python:
9
- "2.7"
10
- "3.3"
11
- "3.4"
12
+ - "pypy"
13
+ - "pypy3"
14
15
env:
16
- RUN=nosetests
17
- RUN=build_sphinx
18
19
+matrix:
20
+ fast_finish: true
21
+ allow_failures:
22
+ - python: "pypy"
23
+ - python: "pypy3"
24
+
25
install:
26
- ./.travis.install.sh
27
0 commit comments