Skip to content

Commit 1175853

Browse files
committed
Add travis testing.
1 parent dde621a commit 1175853

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: python
2+
python:
3+
- "2.7"
4+
- "3.2"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
- "3.6"
9+
install: pip install -r requirements.txt
10+
script: make test
11+
12+
# Local Variables:
13+
# mode: yaml
14+
# End:

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pytest >=2.8.0 ; python_version < '3.0'
2+
pytest >=2.8.0,<3.0.0 ; python_version == '3.2'
3+
pytest >=2.8.0 ; python_version > '3.2'

0 commit comments

Comments
 (0)