code format

This commit is contained in:
Jakub Miazek
2024-04-24 10:37:08 +02:00
parent 43fe665608
commit c2975fd260
19 changed files with 358 additions and 173 deletions

View File

@@ -29,6 +29,10 @@ docker-create-db-migration: ## Create new alembic database migration aka databa
docker-test: ## Run project tests
docker-compose -f docker-compose.yml -f docker-compose.test.yml run --rm app pytest
.PHONY: docker-test-snapshot
docker-test-snapshot: ## Run project tests with inline snapshot
docker-compose -f docker-compose.yml -f docker-compose.test.yml run --rm app pytest --inline-snapshot=create
.PHONY: safety
safety: ## Check project and dependencies with safety https://github.com/pyupio/safety
docker-compose run --rm app safety check