Change tests report filename

This commit is contained in:
Alex Root Junior 2019-11-17 23:55:36 +02:00
parent 7d1c4dcca8
commit 1a2513e940
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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: