Files
httprunner/.travis.yml
2017-06-26 22:06:15 +08:00

15 lines
230 B
YAML

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