mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2024-10-01 03:35:38 -04:00
20 lines
389 B
Makefile
20 lines
389 B
Makefile
test:
|
|
python3 -m pytest
|
|
python3 -m pytest --black pantalaimon
|
|
python3 -m pytest --flake8 pantalaimon
|
|
|
|
coverage:
|
|
python3 -m pytest --cov=pantalaimon --cov-report term-missing
|
|
|
|
typecheck:
|
|
mypy --ignore-missing-imports pantalaimon
|
|
|
|
run-local:
|
|
python -m pantalaimon.main --log-level debug --config ./contrib/pantalaimon.conf
|
|
|
|
isort:
|
|
isort -y -p pantalaimon
|
|
|
|
format:
|
|
black pantalaimon/
|