Add travis ci config
This commit is contained in:
parent
e00537ba57
commit
66ac8760be
2 changed files with 7 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -8,6 +8,7 @@ __pycache__/
|
|||
# Hidden files
|
||||
.*
|
||||
!/.gitignore
|
||||
!/.travis.yml
|
||||
|
||||
|
||||
# Data dir
|
||||
|
|
6
.travis.yml
Normal file
6
.travis.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
script: python -m pytest src/Test
|
Loading…
Reference in a new issue