halig/Makefile
cătălin 7a1cdaa003
Some checks failed
checks / tests-10 (push) Failing after 4m32s
checks / pre-commit (push) Successful in 4m56s
checks / tests-12 (push) Failing after 2m45s
checks / tests-11 (push) Failing after 3m5s
feat: add git status subcommand
2024-09-10 22:54:24 +02:00

22 lines
487 B
Makefile

fmt:
pre-commit run --all-files --color always
.PHONY: tests
tests:
pdm run pytest --cov=halig -vv tests --report-log reportlog.json
pdm run coverage html
pdm run coverage xml
build:
pdm build
publish-pypi:
pdm publish -u $(PYPI_REGISTRY_USERNAME) -P $(PYPI_REGISTRY_PASSWORD)
publish-roboces:
pdm publish -u $(ROBOCES_REGISTRY_USERNAME) -P $(ROBOCES_REGISTRY_PASSWORD) -r https://git.roboces.dev/api/packages/catalin/pypi
publish:
make publish-pypi
make publish-roboces