Browse Source
Fix travis build
Remove Python 2.6 since it seems flake8 no longer supports it
Add the install of Flask
master
v1.0.0
No known key found for this signature in database
GPG Key ID: A2ECAB73CE12147F
1 changed files with
1 additions and
2 deletions
-
.travis.yml
|
|
|
@ -1,7 +1,6 @@ |
|
|
|
language: python |
|
|
|
|
|
|
|
python: |
|
|
|
- "2.6" |
|
|
|
- "2.7" |
|
|
|
- "3.3" |
|
|
|
- "3.4" |
|
|
|
@ -11,7 +10,7 @@ python: |
|
|
|
sudo: false |
|
|
|
|
|
|
|
install: |
|
|
|
- pip install flake8 |
|
|
|
- pip install flake8 Flask |
|
|
|
|
|
|
|
script: |
|
|
|
- flake8 --max-line-length=120 flask_defer.py && python test_flask_defer.py |