-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
47 lines (33 loc) · 1.54 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.PHONY: test help
test: up-dbs test-unit test-integration
up-dbs: ## Bring up the DBs
docker compose -f docker-compose.db.yml up -d
sleep 5
cd icon_governance && PYTHONPATH=$PYTHONPATH:`pwd`/.. alembic upgrade head
down-dbs: ## Take down the DBs
docker compose -f docker-compose.db.yml down
test-unit: ## Run unit tests
export ENV_FILE=""
python3 -m pytest tests/unit
test-integration: ## Run integration tests - Need DB compose up
export ENV_FILE=""
python3 -m pytest tests/integration
test-coverage: ## Run unit tests - Need DB compose up
PYTHONPATH=$PYTHONPATH:`pwd` pytest --cov=icon_governance --cov-report xml tests/integration
PYTHONPATH=$PYTHONPATH:`pwd` pytest --cov=icon_governance --cov-append --cov-report xml tests/unit
up-all: ## Bring everything up as containers
docker compose -f docker-compose.db.yml -f docker-compose.yml up -d
down: ## Take down all the containers
docker compose -f docker-compose.db.yml -f docker-compose.yml down
clean:
docker volume rm $(docker volume ls -q)
build: ## Build everything
docker-compose build
ps: ## List all containers and running status
docker compose -f docker-compose.db.yml -f docker-compose.yml ps
postgres-console: ## Start postgres terminal
docker compose -f docker-compose.db.yml -f docker-compose.yml exec postgres psql -U postgres
install:
pip install -r requirements-api.txt -r requirements-worker.txt -r requirements-dev.txt
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}'