Files
httprunner/.travis.yml
2018-02-22 11:23:34 +08:00

15 lines
263 B
YAML

sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
install:
- pip install coverage
- pip install coveralls
- pip install -r requirements-dev.txt
script:
- coverage run --source=httprunner -m unittest discover
after_success:
- coveralls