Skip to content

Commit c2f97bb

Browse files
committed
Test against marshmallow 2 and 3
Also, drop pypy builds. If it works on py27, pypy should also work
1 parent 5a8da95 commit c2f97bb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@ sudo: false
33
env:
44
- APISPEC_VERSION="==0.17.0"
55
- APISPEC_VERSION=""
6+
- MARSHMALLOW_VERSION="==2.13.0"
7+
- MARSHMALLOW_VERSION=""
68
python:
79
- '2.7'
810
- '3.4'
911
- '3.5'
1012
- '3.6'
11-
- pypy
1213
before_install:
1314
- travis_retry pip install codecov
1415
# Fix travis issue with py3.4 builds
1516
- travis_retry pip install -U six
1617
install:
1718
- travis_retry pip install -U .
1819
- travis_retry pip install -U -r dev-requirements.txt
19-
- travis_retry pip install -U apispec"$APISPEC_VERSION"
20+
- travis_retry pip install -U --pre apispec"$APISPEC_VERSION"
21+
- travis_retry pip install -U --pre marshmallow"$MARSHMALLOW_VERSION"
2022
before_script:
2123
- flake8 flask_apispec
2224
script: py.test

0 commit comments

Comments
 (0)