summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcclauss <cclauss@bluewin.ch>2017-11-18 08:15:56 +0100
committerGitHub <noreply@github.com>2017-11-18 08:15:56 +0100
commit750725b7a73db1be4bb90bda115e45dcadf7a8e5 (patch)
tree4d805398cee28d6550eb4c2adeabda1c0228d2c2
parent4676e41472725b03badcd9517f5aa2c2a41c1ebf (diff)
downloadpython-prettytable-ptable-750725b7a73db1be4bb90bda115e45dcadf7a8e5.tar.gz
Add Python 3.5, 3.6, flake8 to testing, drop 3.3
https://docs.python.org/devguide/#status-of-python-branches
-rw-r--r--.travis.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 96bcd7c..be16048 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,19 @@
language: python
python:
- "2.7"
- - "3.3"
- "3.4"
+ - "3.5"
+ - "3.6"
install:
- "pip install -r req-dev.txt"
+ - "pip install flake8"
+
+before_script:
+ # stop the build if there are Python syntax errors or undefined names
+ - time flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
+ - time flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script: make test
after_success: coveralls
-