From dbbcb08f16d804c5888e7f467a5404d57cc35e74 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 19 Nov 2017 00:28:49 +0100 Subject: [PATCH] travis config file. --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1dd8790 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - 3.6 +install: + - pip install -r requirements-dev.txt + +script: pytest + +after_success: + - coverage run -m pytest + - codecov -t $CODECOV_TOKEN