first round of review
This commit is contained in:
parent
870804e7b9
commit
23049da55a
15 changed files with 325 additions and 182 deletions
7
Makefile
7
Makefile
|
|
@ -23,6 +23,9 @@ db:
|
|||
db-stop:
|
||||
docker compose down
|
||||
|
||||
db-clean:
|
||||
docker compose down -v
|
||||
|
||||
db-ready:
|
||||
@docker compose up -d db
|
||||
@echo "Waiting for PostgreSQL to be ready..."
|
||||
|
|
@ -42,13 +45,13 @@ dev:
|
|||
cd frontend && npm run dev & \
|
||||
wait
|
||||
|
||||
test-backend: db-ready
|
||||
test-backend: db-clean db-ready
|
||||
cd backend && uv run pytest -v
|
||||
|
||||
test-frontend:
|
||||
cd frontend && npm run test
|
||||
|
||||
test-e2e:
|
||||
test-e2e: db-clean db-ready
|
||||
./scripts/e2e.sh
|
||||
|
||||
test: test-backend test-frontend test-e2e
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue