Skip to content

Commit d16f9d2

Browse files
committed
Enable Travis CI.
1 parent 4a80447 commit d16f9d2

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# platform artifacts
22
.*
3+
!.travis.yml
34

45
# build and scratch areas
56
local/

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: python
2+
python:
3+
- 2.7
4+
- 3.4
5+
- 3.5
6+
install:
7+
- pip install -r requirements.txt
8+
script:
9+
- pytest

requirements.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# running
2+
requests>=2.4.2
3+
cryptography
4+
PyJWT
5+
six
6+
enum34
7+
# testing
8+
pytest
9+
mock
10+
PyYAML

0 commit comments

Comments
 (0)