-
Notifications
You must be signed in to change notification settings - Fork 63
/
Makefile
30 lines (22 loc) · 940 Bytes
/
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
########################################################################################################################
# Quality checks
########################################################################################################################
test:
poetry run pytest tests --cov genoss --cov-report term --cov-report=html --cov-report xml --junit-xml=tests-results.xml
black_isort:
poetry run black . --check
poetry run isort . --check
ruff:
poetry run ruff check genoss tests
fix-ruff:
poetry run ruff check genoss tests --fix
mypy:
poetry run mypy genoss
########################################################################################################################
# Api
########################################################################################################################
start-api:
docker compose up -d
run:
docker build -t genoss .
docker run -it --rm -p 4321:4321 genoss