Files
responder/.travis.yml
T
2019-07-08 09:26:34 +02:00

18 lines
309 B
YAML

# travis use trusty by default
dist: xenial
language: python
python:
- 3.6
- 3.7
# command to install dependencies
install:
- pip install pipenv --upgrade-strategy=only-if-needed
- pipenv install --dev
# command to run the dependencies
script:
- black responder tests setup.py --check
- pytest