Skip to content

Commit 15fd771

Browse files
committed
Add travis CI
1 parent 490454a commit 15fd771

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- "2.7"
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
install:
9+
- pip install -r dev-requirements.txt
10+
- pip install pytest-cov coveralls
11+
script:
12+
- python -m pytest tests.py --cov=github_token
13+
- python setup.py install
14+
after_success:
15+
- coveralls

0 commit comments

Comments
 (0)