Skip to content

Commit 587dcaf

Browse files
committed
Add Travis config
1 parent 2a5f4c7 commit 587dcaf

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This is a simple Travis config for a project that only needs to install pure
2+
# Python dependencies. For more complex setups, you can use conda on Travis:
3+
# http://conda.pydata.org/docs/travis.html
4+
5+
language: python
6+
python:
7+
- "3.5"
8+
- "3.4"
9+
- "2.7"
10+
# Install any dependencies of our package:
11+
install: pip install requests
12+
# command to run tests
13+
script: py.test

0 commit comments

Comments
 (0)