mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
[3.x] Bot API 5.5 (#777)
* Re-generate API, cover changes * Added patchnotes
This commit is contained in:
parent
92ec44d8d2
commit
9ec689b562
22 changed files with 333 additions and 15 deletions
7
Makefile
7
Makefile
|
|
@ -82,13 +82,16 @@ reformat:
|
|||
# =================================================================================================
|
||||
# Tests
|
||||
# =================================================================================================
|
||||
.PHONY: test-run-services
|
||||
test-run-services:
|
||||
docker-compose -f tests/docker-compose.yml -p aiogram3-dev up -d
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
test: test-run-services
|
||||
$(py) pytest --cov=aiogram --cov-config .coveragerc tests/ --redis $(redis_connection)
|
||||
|
||||
.PHONY: test-coverage
|
||||
test-coverage:
|
||||
test-coverage: test-run-services
|
||||
mkdir -p $(reports_dir)/tests/
|
||||
$(py) pytest --cov=aiogram --cov-config .coveragerc --html=$(reports_dir)/tests/index.html tests/ --redis $(redis_connection)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue