From 1a2513e940057dffb0bb640e414e6b19523a523b Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 17 Nov 2019 23:55:36 +0200 Subject: [PATCH] Change tests report filename --- .github/workflows/docs.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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: