瀏覽代碼

Create .travis.yml

Bastien Sevajol 6 年之前
父節點
當前提交
4326018b4b
沒有帳戶連結到提交者的電子郵件
共有 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