From 8de91be7abb8c11ebe16746f30b2b47e51df646c Mon Sep 17 00:00:00 2001 From: romangraef Date: Mon, 26 Nov 2018 21:42:23 +0100 Subject: travis --- .travis.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ab6e038 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: python +python: +- "3.6" +- "3.4" +install: pip install tox-travis pylint +matrix: + fast_finish: true + include: + - stage: test + name: Unit tests + script: tox + - stage: lint + name: Linting + script: pylint + allow_failures: + - stage: lint -- cgit