We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a80447 commit d16f9d2Copy full SHA for d16f9d2
.gitignore
@@ -1,5 +1,6 @@
1
# platform artifacts
2
.*
3
+!.travis.yml
4
5
# build and scratch areas
6
local/
.travis.yml
@@ -0,0 +1,9 @@
+language: python
+python:
+ - 2.7
+ - 3.4
+ - 3.5
+install:
7
+ - pip install -r requirements.txt
8
+script:
9
+ - pytest
requirements.txt
@@ -0,0 +1,10 @@
+# running
+requests>=2.4.2
+cryptography
+PyJWT
+six
+enum34
+# testing
+pytest
+mock
10
+PyYAML
0 commit comments