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.
This commit is contained in:
cclauss 2019-06-28 07:03:12 +02:00 committed by GitHub
parent 31dcd9b062
commit 14e03a3766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

3
.travis.yml vendored Normal file
View File

@ -0,0 +1,3 @@
language: python
install: pip install flake8
script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics