From 40465ed29cab2ad6fc622bf5c90f50652329e2b6 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 3 Dec 2018 19:29:43 +0100 Subject: [PATCH] Add .travis.yml --- .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..3edd5fd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: python +sudo: false +python: + - "3.4" + - "3.5" + - "3.6" + - "3.7" +install: + - pip install -U pip wheel coverage codecov + - pip install -r requirements.txt py.test + - python setup.py develop +script: + - coverage run -m py.test -v tests/ && codecov +cache: + directories: + - $HOME/.cache/pip -- 2.47.2