-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (30 loc) · 1.34 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
.PHONY: test help
test: up-dbs test-integration
up-dbs: ## Bring up the DBs
docker-compose -f docker-compose.db.yml up -d
sleep 5
cd icon_metrics && PYTHONPATH=$PYTHONPATH:`pwd`/.. alembic upgrade head
down-dbs: ## Take down the DBs
docker-compose -f docker-compose.db.yml down
test-integration: ## Run integration tests - Need DB compose up
python3 -m pytest tests
test-coverage: ## Run unit tests - Need DB compose up
PYTHONPATH=$PYTHONPATH:`pwd` pytest --cov=icon_metrics --cov-report xml tests
up: ## 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
build-api: ## Build the api
docker-compose build blocks-api
build-worker: ## Build the worker
docker-compose build blocks-worker
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
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}'