Skip to content

Commit e194d7b

Browse files
committedApr 4, 2017
add .travis.yml
1 parent 513439f commit e194d7b

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
 

‎.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: python
2+
python:
3+
- "2.6"
4+
- "2.7"
5+
- "3.2"
6+
- "3.3"
7+
- "3.4"
8+
- "3.5"
9+
- "3.5-dev" # 3.5 development branch
10+
- "3.6"
11+
- "3.6-dev" # 3.6 development branch
12+
- "3.7-dev" # 3.7 development branch
13+
- "nightly" # currently points to 3.7-dev
14+
# command to install dependencies
15+
install: "pip install -r requirements.txt"
16+
# command to run tests
17+
script: pytest

‎requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.