Files
httprunner/.travis.yml
2018-08-07 15:14:44 +08:00

17 lines
335 B
YAML

sudo: true
dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install pipenv --upgrade-strategy=only-if-needed
- pipenv install --dev
script:
- pipenv run python setup.py install
- pipenv run coverage run --source=httprunner -m unittest discover
after_success:
- pipenv run coveralls