mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
14 lines
182 B
Makefile
14 lines
182 B
Makefile
test:
|
|
@pytest --disable-pytest-warnings
|
|
|
|
test-ci: bootstrap
|
|
@pytest --disable-pytest-warnings
|
|
|
|
fmt:
|
|
@black .
|
|
|
|
bootstrap:
|
|
@python -m scripts.bootstrap
|
|
|
|
.PHONY: test fmt bootstrap
|