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 113169e commit 049d14dCopy full SHA for 049d14d
.travis.yml
@@ -1,17 +1,24 @@
1
-sudo: false
2
language: python
3
-matrix:
4
- include:
5
- - python: 2.7
6
- env: TOXENV=py27
7
- - python: 3.3
8
- env: TOXENV=py33
9
- - python: 3.4
10
- env: TOXENV=py34
11
- - python: pypy
12
- env: TOXENV=pypy
+sudo: false
+python:
+ - "2.7"
+ - "3.3"
+ - "3.4"
+ - "3.5"
+ # pypy2.7-5.8.0 is broken in Travis
+ - "3.6"
+ - "pypy-5.6.0"
+ - "pypy3.5-5.8.0"
+branches:
13
+ only:
14
+ - master
15
install:
- - pip install tox
16
+ - python -V
17
+ - python setup.py build_ext --inplace
18
+ - pip install nose
19
script:
- - tox
-
20
+ - nosetests -v
21
+notifications:
22
+ email:
23
+ on_success: never
24
+ on_failure: change
0 commit comments