remove --cov option from pytest to allow debugging in pycharm

This commit is contained in:
Son NK 2021-03-24 17:25:41 +01:00
parent 71389b7e09
commit a570a426d4
2 changed files with 1 additions and 8 deletions

View File

@ -39,7 +39,7 @@ jobs:
- name: Test with pytest
run: |
pytest
pytest --cov=. --cov-report=term:skip-covered --cov-report=html:htmlcov --cov-fail-under=60
- name: Archive code coverage results
uses: actions/upload-artifact@v2

View File

@ -84,13 +84,6 @@ pre-commit = "^2.7.1"
pytest-cov = "^2.10.1"
flake8 = "^3.8.4"
[tool.pytest.ini_options]
addopts = """
--cov=.
--cov-report=term:skip-covered
--cov-report=html:htmlcov
--cov-fail-under=60
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"