-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
55 lines (40 loc) · 1.9 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
48
49
50
51
52
53
54
55
.PHONY: test help
SHELL := /bin/bash
setup: ## Setup and install all requirements into env
@if [ ! -d "env" ]; then \
python3 -m venv env; \
fi
source env/bin/activate; \
pip install -r requirements-common.txt -r requirements-api.txt -r requirements-cron.txt -r requirements-streaming.txt -r requirements-dev.txt
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_stats && 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_stats --cov-report xml tests/integration
PYTHONPATH=$PYTHONPATH:`pwd` pytest --cov=icon_stats --cov-append --cov-report xml tests/unit
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
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: ## Install all requirements
pip install -r requirements-common.txt -r requirements-api.txt -r requirements-cron.txt -r requirements-streaming.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}'