diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..2b649816 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: "python" + +python: + - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "pypy" + - "pypy3" + +install: + - pip install flake8 + +script: + - flake8 --ignore=W191,F401,E501 . + +notifications: + email: + on_success: change + on_failure: always