diff --git a/.gitignore b/.gitignore index d9c6fb7..5b75ffb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ .pytest_cache/ __pycache__/ build/ +coverage.json dist/ htmlcov/ venv/ diff --git a/ci.sh b/ci.sh index 8bbf2af..d263e56 100755 --- a/ci.sh +++ b/ci.sh @@ -4,5 +4,5 @@ set -eu source ./.venv/bin/activate -pytest --cov=autodesk --cov-branch +pytest --cov=autodesk --cov-branch --cov-report=term --cov-report=json ruff check autodesk tests diff --git a/requirements-ci.txt b/requirements-ci.txt index 380b150..65d760b 100644 --- a/requirements-ci.txt +++ b/requirements-ci.txt @@ -1,4 +1,3 @@ -codecov==2.1.13 mock==5.1.0 pytest-aiohttp==1.0.5 pytest-asyncio==0.23.7