File size: 429 Bytes
9c1c0ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.PHONY: install test lint format coverage build run api security

install:
	python -m pip install -e ".[dev]"
test:
	python -m pytest
lint:
	python -m ruff check .
format:
	python -m ruff format .
coverage:
	python -m pytest --cov=datapilot --cov=api --cov-fail-under=75
build:
	python -m build
run:
	python -m streamlit run app.py
api:
	python -m uvicorn api.main:app --reload
security:
	python -m pip_audit