-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
45 lines (33 loc) · 1.7 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
########################################################################################################################
# Project installation
########################################################################################################################
install:
pyenv virtualenv --force 3.11.6 llm-eval-annotator
pyenv local llm-eval-annotator
# Running poetry install inside a Make command requires a VIRTUAL_ENV variable
VIRTUAL_ENV=$$(pyenv prefix) poetry install --no-root --sync
########################################################################################################################
# Quality checks
########################################################################################################################
test:
poetry run pytest tests --cov src --cov-report term --cov-report=html --cov-report xml --junit-xml=tests-results.xml
format-check:
poetry run ruff format --check src tests
format-fix:
poetry run ruff format src tests
lint-check:
poetry run ruff check src tests
lint-fix:
poetry run ruff check src tests --fix
type-check:
poetry run mypy src
########################################################################################################################
# Api
########################################################################################################################
start-api:
docker compose up -d
########################################################################################################################
# Streamlit
########################################################################################################################
start-streamlit-app:
poetry run streamlit run "src/streamlit_app/🏠_Home_page.py"