From c9bbb3040890c121936634644a2bc709f46fa560 Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 31 Jan 2019 13:09:42 +0100 Subject: [PATCH] Create .travis.yml --- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ab72875 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +group: travis_latest +language: python +cache: pip +matrix: + allow_failures: + - python: 3.7 + include: + - python: 2.7 + #- python: 3.5 + #- python: 3.6 + - python: 3.7 + dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069) +install: + # - pip install -r requirements.txt + - pip install flake8 +before_script: + # stop the build if there are Python syntax errors or undefined names + - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics +script: + - true # add other tests here +notifications: + on_success: change + on_failure: change # `always` will be the setting once code changes slow down