Files
responder/.travis.yml
T
2019-02-19 13:34:02 +01:00

14 lines
266 B
YAML

language: python
python:
- "3.6"
# command to install dependencies
install:
- "pip install pipenv --upgrade-strategy=only-if-needed"
- "pipenv install --dev"
# command to run the dependencies
script:
- "pytest"
- "black responder tests setup.py --check"