mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Clean obsolete code and change configs
This commit is contained in:
parent
d09b72ce6e
commit
65815e509f
58 changed files with 78 additions and 3959 deletions
13
Makefile
13
Makefile
|
|
@ -7,14 +7,20 @@ help:
|
|||
@echo "======================================================================================="
|
||||
@echo " aiogram build tools "
|
||||
@echo "======================================================================================="
|
||||
@echo "Commands list:"
|
||||
@echo "Environment:"
|
||||
@echo " install: Install development dependencies"
|
||||
@echo ""
|
||||
@echo "Code quality:"
|
||||
@echo " isort: Run isort tool"
|
||||
@echo " black: Run black tool"
|
||||
@echo " flake8: Run flake8 tool"
|
||||
@echo " mypy: Run mypy tool"
|
||||
@echo " lint: Run isort, black, flake8 and mypy tools"
|
||||
@echo ""
|
||||
@echo "Tests:"
|
||||
@echo " test: Run tests"
|
||||
@echo ""
|
||||
@echo ""
|
||||
@echo ""
|
||||
|
||||
.PHONY: install
|
||||
|
|
@ -40,3 +46,8 @@ mypy:
|
|||
|
||||
.PHONY: lint
|
||||
lint: isort black flake8 mypy
|
||||
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
poetry run pytest --cov=aiogram --cov-config .coveragerc tests/ -sq
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue