2023-12-28 23:22:29 +01:00
|
|
|
.PHONY: test format clean serve_docs
|
|
|
|
|
test:
|
2025-04-07 06:52:43 +02:00
|
|
|
python3 -m pytest -n auto --dist loadgroup --cov-report xml --cov=src/manta
|
2023-07-31 04:13:16 +02:00
|
|
|
|
2023-12-28 23:22:29 +01:00
|
|
|
format:
|
2024-08-07 01:46:15 +02:00
|
|
|
python3 -m ruff check --select I --fix
|
2024-08-07 01:30:13 +02:00
|
|
|
python3 -m ruff format
|
2023-03-07 19:02:40 +01:00
|
|
|
|
2023-07-17 16:10:20 +02:00
|
|
|
clean:
|
2023-08-23 16:45:23 +02:00
|
|
|
git clean -Xdf
|
2023-03-07 19:02:40 +01:00
|
|
|
|
2024-03-07 21:25:30 +01:00
|
|
|
preview_site:
|
2024-10-06 19:25:14 +02:00
|
|
|
mike serve
|