From 14e03a37662f52e5a06d5af1b3d5ef1e2d7cba93 Mon Sep 17 00:00:00 2001 From: cclauss Date: Fri, 28 Jun 2019 07:03:12 +0200 Subject: [PATCH] Add automated testing using Travis CI The repo switch would need to be turned on at https://travis-ci.com/satwikkansal/wtfpython to enable free automated testing of all code changes. --- .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 0000000..8d2ea6b --- /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