mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-15 20:38:44 +08:00
20 lines
376 B
YAML
20 lines
376 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
matrix:
|
|
include:
|
|
- python: 3.7
|
|
dist: xenial
|
|
sudo: true
|
|
install:
|
|
- pip install pipenv --upgrade
|
|
- 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 |