hash tests

This commit is contained in:
2026-07-28 13:31:58 +03:00
parent 7a4df2933d
commit f81ba19da4
6 changed files with 63 additions and 13 deletions

View File

@@ -3,7 +3,7 @@ ALLURE=.venv/allure-2.44.0/bin/allure #linux&macos
#ALLURE=.venv\allure-2.44.0\bin\allure #Windows
.PHONY:
run, m_gen, m_up, allure, coverage
run, m_gen, m_up, allure, coverage, pytest
run:
${VENV} python3 main.py
@@ -11,6 +11,8 @@ m_gen:
${VENV} alembic revision --autogenerate
m_up:
${VENV} alembic upgrade head
pytest:
${VENV} pytest
allure:
${VENV} ${ALLURE} generate tests/allure-results/reports --single-file -o tests/allure-results/html --clean
coverage: