diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 37e84bdd..3875d658 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -31,7 +31,7 @@ jobs: - name: Run tests run: | - poetry run pytest --cov=aiogram --cov-config .coveragerc --html=reports/tests/report.html tests/ + poetry run pytest --cov=aiogram --cov-config .coveragerc --html=reports/tests/index.html tests/ poetry run coverage html -d reports/coverage - name: Build docs diff --git a/Makefile b/Makefile index 41833b0c..b69aa504 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ lint: isort black flake8 mypy .PHONY: test test: mkdir -p reports/tests/ - $(py) pytest --cov=aiogram --cov-config .coveragerc --html=reports/tests/report.html tests/ + $(py) pytest --cov=aiogram --cov-config .coveragerc --html=reports/tests/index.html tests/ .PHONY: build-testcov build-testcov: