Explorar el Código

Create .travis.yml

Bastien Sevajol hace 7 años
padre
commit
5c4eac214b
Se han modificado 1 ficheros con 16 adiciones y 0 borrados
  1. 16 0
      .travis.yml

+ 16 - 0
.travis.yml Ver fichero

@@ -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