Add travis to test multiple versions of Python
This commit is contained in:
parent
964398722a
commit
223f50b5be
1 changed files with 15 additions and 0 deletions
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- "3.4"
|
||||||
|
- "3.5"
|
||||||
|
- "3.5"
|
||||||
|
- "3.6"
|
||||||
|
- "3.7"
|
||||||
|
|
||||||
|
install:
|
||||||
|
- pip install -e .
|
||||||
|
- pip install -r dev-requirements.txt
|
||||||
|
|
||||||
|
script:
|
||||||
|
- ./scripts/test.sh
|
Reference in a new issue