Skip to content

Commit

Permalink
Test against Flask 0.10 and Flask 0.12; test py3.6/pypy (#683)
Browse files Browse the repository at this point in the history
* use container-based travis virtualization

From travis docs: "Container-based (Fast boot time environment in which sudo commands are not available)"

* Add travis python targets: 3.6, pypy, pypy3

* test different Flask versions

* minor spacing fix

* Update .travis.yml

* Update .travis.yml
  • Loading branch information
neilsh authored and joshfriend committed Nov 1, 2017
1 parent f71b4f6 commit a9b10b9
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
sudo: false # https://docs.travis-ci.com/user/ci-environment/
language: python
python:
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
- 2.6
install: pip install coveralls
- pypy
- pypy3
env:
- FLASK=0.10 # old popular Flask version, 2013-2016
- FLASK=0.12 # recent Flask

install:
- pip install -q Flask==$FLASK
- pip install coveralls
script: make ci
after_success: coveralls

Expand Down

0 comments on commit a9b10b9

Please sign in to comment.