Files
httprunner/.travis.yml
2019-07-28 16:30:54 +08:00

21 lines
453 B
YAML

sudo: false
language: python
python:
- 2.7
- 3.5
- 3.6
matrix:
include:
- python: 3.7
dist: xenial # Required for Python 3.7
sudo: true # Required for Python 3.7
install:
- pip install poetry
- poetry install -vvv
script:
- python -m httprunner.cli hrun -V
- python -m httprunner.cli hrun -h
- poetry build
- poetry run coverage run --source=httprunner -m unittest discover
after_success:
- poetry run coveralls