From: Raphael Michel Date: Mon, 3 Dec 2018 18:29:43 +0000 (+0100) Subject: Add .travis.yml X-Git-Tag: v2.0.0~1^2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40465ed29cab2ad6fc622bf5c90f50652329e2b6;p=thirdparty%2Fpython-fints.git Add .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