From 86cbb6dedc6ee2bd14bccb6a89af46ee3c33cab4 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 23 Jul 2019 09:49:30 +0200 Subject: [PATCH] Travis CI: Add Python 3 to the testing --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5927dbe..9f2d284 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: python python: - "2.7" + - "3.6" install: - - pip install -r requirements.txt + - pip install flake8 -r requirements.txt +before_script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics script: pytest