From 3eaa9281aa29bb017815c47799b915b049b00966 Mon Sep 17 00:00:00 2001 From: cclauss Date: Fri, 28 Jun 2019 06:35:03 +0200 Subject: [PATCH] test: Use Travis CI to find Python 3 compatibility issues --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000000000..8d2ea6bbb6aefb --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: python +install: pip install flake8 +script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics