Merge pull request #369 from waghanza/py_37

Add python3.7 on CI
This commit is contained in:
Taoufik
2019-07-08 13:56:46 +02:00
committed by GitHub
+9 -5
View File
@@ -1,13 +1,17 @@
# travis use trusty by default
dist: xenial
language: python
python:
- "3.6"
- 3.6
- 3.7
# command to install dependencies
install:
- "pip install pipenv --upgrade-strategy=only-if-needed"
- "pipenv install --dev"
- pip install pipenv --upgrade-strategy=only-if-needed
- pipenv install --dev
# command to run the dependencies
script:
- "black responder tests setup.py --check"
- "pytest"
- black responder tests setup.py --check
- pytest