We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5f4c7 commit 587dcafCopy full SHA for 587dcaf
.travis.yml
@@ -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