ソースを参照

Create .travis.yml

Bastien Sevajol 7 年 前
コミット
5c4eac214b
共有1 個のファイルを変更した16 個の追加0 個の削除を含む
  1. 16 0
      .travis.yml

+ 16 - 0
.travis.yml ファイルの表示

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