mirror of
https://github.com/kennethreitz/responder.git
synced 2026-06-05 14:50:19 +00:00
19 lines
323 B
YAML
19 lines
323 B
YAML
# travis use trusty by default
|
|
dist: xenial
|
|
|
|
language: python
|
|
python:
|
|
- 3.6
|
|
- 3.7
|
|
- "3.8-dev"
|
|
|
|
# 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
|