Browse Source

Create .travis.yml

Bastien Sevajol 6 years ago
parent
commit
5c4eac214b
1 changed files with 16 additions and 0 deletions
  1. 16 0
      .travis.yml

+ 16 - 0
.travis.yml View File

@@ -0,0 +1,16 @@
1
+sudo: false
2
+language: python
3
+python:
4
+  - "3.4"
5
+  - "3.5"
6
+  - "3.6"
7
+
8
+install:
9
+  - python setup.py develop
10
+  - pip install pytest pytest-cov
11
+
12
+script: 
13
+  - pytest --cov=hapic tests
14
+
15
+after_success:
16
+  - coveralls