Skip to content

Commit c4201f7

Browse files
authored
Fix travis (#79)
Fix breakage (and deadsnakes) hack for travis ci.
1 parent 42f1e7c commit c4201f7

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.travis.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
language: python
2-
python:
3-
- "3.6"
4-
addons:
5-
apt:
6-
sources:
7-
- deadsnakes
8-
packages:
9-
- python3.5 python3.5-dev
2+
matrix:
3+
include:
4+
- python: 3.6
5+
env: TOXENV=py
6+
- python: 3.5
7+
env: TOXENV=py
8+
- python: 3.4
9+
env: TOXENV=py
10+
- python: 3.3
11+
env: TOXENV=py
12+
- python: 2.7
13+
env: TOXENV=py
14+
- python: pypy
15+
env: TOXENV=py
1016
sudo: false
11-
env:
12-
- TOXENV=py27
13-
- TOXENV=py33
14-
- TOXENV=py34
15-
- TOXENV=py35
16-
- TOXENV=py36
1717
install:
1818
- pip install -U pip
1919
- pip install -U tox coverage coveralls

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ We are on irc! You can come chat with us in the ```#flask-jwt-extended``` channe
3434

3535

3636
### Testing and Code Coverage
37-
We require 100% code coverage in our unit tests. We run all the unit tests with tox,
38-
which will test against python2.7, 3.3, 3.4, 3.5 and 3.6. Running tox will print out a
39-
code coverage report
37+
We require 100% code coverage in our unit tests. You can run the tests locally
38+
with `tox` which will print out a code coverage report. Creating a pull request
39+
will run the tests against python 2.7, 3.3, 3,4, 3,5, 3,6, and PyPy.
4040
```
4141
$ tox
4242
```

0 commit comments

Comments
 (0)