ソースを参照

Create .travis.yml

Bastien Sevajol 7 年 前
コミット
4326018b4b
No account linked to committer's email
共有1 個のファイルを変更した14 個の追加0 個の削除を含む
  1. 14 0
      .travis.yml

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

@@ -0,0 +1,14 @@
1
+language: python
2
+services:
3
+  - redis-server
4
+python:
5
+  - "3.5"
6
+  - "3.6"
7
+install:
8
+  - "pip install -r requirements.txt"
9
+  - "pip install pytest-cov"
10
+  - "pip install coveralls"
11
+script:
12
+  - py.test --cov-config .coveragerc --cov=opencombat ./tests/
13
+after_success:
14
+  - coveralls