summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKane Blueriver <kxxoling@gmail.com>2018-07-27 00:35:32 +0800
committerGitHub <noreply@github.com>2018-07-27 00:35:32 +0800
commit21b0644a6b59c32f810d96295c26d024bfa5b59c (patch)
treebe52f0cb9959415bbbda5f6c164765976c5440cf
parentdb4b5f32baa047832ed7892792059f595118fdf4 (diff)
parent86c89284ef00b0d353ed3b2ab080773f2825f488 (diff)
downloadpython-prettytable-ptable-21b0644a6b59c32f810d96295c26d024bfa5b59c.tar.gz
Merge pull request #21 from cclauss/patch-1
Add Python 3.5, 3.6, flake8 to testing, drop 3.3
-rw-r--r--.travis.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 96bcd7c..23b3905 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 --exclude=_compact.py --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
-