]> git.ipfire.org Git - thirdparty/python-fints.git/commitdiff
Add .travis.yml
authorRaphael Michel <mail@raphaelmichel.de>
Mon, 3 Dec 2018 18:29:43 +0000 (19:29 +0100)
committerRaphael Michel <mail@raphaelmichel.de>
Mon, 3 Dec 2018 18:35:36 +0000 (19:35 +0100)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..3edd5fd
--- /dev/null
@@ -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