feat(registry): add new endpoints for registers, exchange, and backups; update routing and configurations
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 3m10s
CI/CD Pipeline / Run Tests (push) Successful in 3m35s
CI/CD Pipeline / Telegram Notify Success (push) Has been skipped
CI/CD Pipeline / Code Quality Checks (pull_request) Failing after 2m26s
CI/CD Pipeline / Run Tests (pull_request) Successful in 2m46s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 3m10s
CI/CD Pipeline / Run Tests (push) Successful in 3m35s
CI/CD Pipeline / Telegram Notify Success (push) Has been skipped
CI/CD Pipeline / Code Quality Checks (pull_request) Failing after 2m26s
CI/CD Pipeline / Run Tests (pull_request) Successful in 2m46s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped
This commit is contained in:
12
Makefile
12
Makefile
@@ -1,4 +1,4 @@
|
||||
.PHONY: help install setup-dev dev-up dev-down prod-up prod-down logs test test-cov test-fast test-parallel test-failfast lint format type-check security-check pre-commit pre-push migrate createsuperuser shell clean
|
||||
.PHONY: help install setup-dev dev-up dev-down prod-up prod-down logs test test-prod test-cov test-fast test-parallel test-failfast lint format type-check security-check pre-commit pre-push migrate createsuperuser shell clean
|
||||
|
||||
COMPOSE_DEV = docker compose -f docker-compose.dev.yml
|
||||
COMPOSE_PROD = docker compose -f docker-compose.prod.yml --env-file .env.prod
|
||||
@@ -13,6 +13,7 @@ help:
|
||||
@echo " make prod-down - Stop prod compose"
|
||||
@echo " make logs - Follow logs from dev compose"
|
||||
@echo " make test - Run tests (use TARGET=... to filter)"
|
||||
@echo " make test-prod - Run production-like tests (PostgreSQL + migrations)"
|
||||
@echo " make pre-commit - Run all pre-commit checks"
|
||||
@echo " make pre-push - Run pre-push checks (tests)"
|
||||
@echo " make migrate - Run Django migrations"
|
||||
@@ -58,6 +59,15 @@ test:
|
||||
./scripts/run-tests.sh; \
|
||||
fi
|
||||
|
||||
test-prod:
|
||||
@if [ "$(TARGET)" ]; then \
|
||||
echo "Running production-like tests: $(TARGET)"; \
|
||||
./scripts/run-tests-prod.sh "$(TARGET)"; \
|
||||
else \
|
||||
echo "Running full production-like test suite"; \
|
||||
./scripts/run-tests-prod.sh; \
|
||||
fi
|
||||
|
||||
test-cov:
|
||||
./scripts/run-tests.sh ../tests --cov=src --cov-report=term-missing --cov-report=xml --cov-report=html
|
||||
|
||||
|
||||
Reference in New Issue
Block a user