feat(ci): Test under python 3.7

This commit is contained in:
Marwan Rabbâa
2019-07-08 09:18:19 +02:00
parent 6dbbad158a
commit f01b1d493f
+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