Skip to content

Commit 6ade291

Browse files
committed
⭐ add .travis.yml
1 parent f3a6d5a commit 6ade291

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: python
2+
3+
python:
4+
- "3.4"
5+
- "3.5"
6+
- "3.6"
7+
8+
env:
9+
- PROJ=${PWD##*/}
10+
11+
install:
12+
- pip install -r test-requirements.txt
13+
14+
script:
15+
- pytest --cov=$PROJ -v tests

test-requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-r requirements.txt
2+
3+
pytest
4+
pytest-cov
5+

0 commit comments

Comments
 (0)