feat: replace pipenv & setup.py with poetry

This commit is contained in:
debugtalk
2019-07-12 23:56:49 +08:00
parent 228caf4c94
commit a0cfc04b3e
7 changed files with 297 additions and 145 deletions
+5 -5
View File
@@ -11,10 +11,10 @@ matrix:
dist: xenial
sudo: true
install:
- pip install pipenv --upgrade
- pipenv install --dev --skip-lock
- pip install poetry
- poetry install
script:
- pipenv run python setup.py install
- pipenv run coverage run --source=httprunner -m unittest discover
- poetry build
- poetry run coverage run --source=httprunner -m unittest discover
after_success:
- pipenv run coveralls
- poetry run coveralls