mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Added more tests, update pyproject.toml
This commit is contained in:
parent
6fbc1bcfde
commit
d9f9ff74fe
8 changed files with 258 additions and 173 deletions
9
Makefile
9
Makefile
|
|
@ -47,7 +47,7 @@ help:
|
|||
|
||||
.PHONY: install
|
||||
install:
|
||||
poetry install -E fast -E redis -E proxy -E i18n -E docs --sync
|
||||
poetry install -E fast -E redis -E proxy -E i18n --sync
|
||||
$(py) pre-commit install
|
||||
|
||||
.PHONY: clean
|
||||
|
|
@ -158,3 +158,10 @@ release:
|
|||
git add .
|
||||
git commit -m "Release $(shell poetry version -s)"
|
||||
git tag v$(shell poetry version -s)
|
||||
|
||||
_poetry_export_args := --format requirements.txt --without-hashes
|
||||
|
||||
.PHONY: export-requirements
|
||||
export-requirements:
|
||||
poetry export $(_poetry_export_args) --output requirements/base.txt
|
||||
poetry export $(_poetry_export_args) --output requirements/docs.txt -E fast -E redis -E proxy -E i18n --with docs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue