mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-11 18:11:21 +08:00
16 lines
339 B
YAML
16 lines
339 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
- 3.7-dev
|
|
install:
|
|
- pip install pipenv --upgrade-strategy=only-if-needed
|
|
- pipenv install --dev --skip-lock
|
|
script:
|
|
- pipenv run python setup.py install
|
|
- pipenv run coverage run --source=httprunner -m unittest discover
|
|
after_success:
|
|
- pipenv run coveralls |