浏览代码

add 1rst version of travis config

Bastien Sevajol 7 年前
父节点
当前提交
7f380b1953
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. 15 0
      .travis.yml

+ 15 - 0
.travis.yml 查看文件

1
+sudo: false
2
+language: python
3
+python:
4
+  - "3.4"
5
+  - "3.5"
6
+  - "3.6"
7
+
8
+install:
9
+  - pip install --upgrade pip setuptools
10
+  - pip install -e ".[testing]"
11
+
12
+script: pytest
13
+
14
+after_success:
15
+  - coveralls