Skip to content

Commit e01dcad

Browse files
committed
Chore: Improve Makefile
1 parent 4e74384 commit e01dcad

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

Makefile

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ bumpversion: install-releasetools
8787
push:
8888
git push && git push --tags
8989

90-
build:
91-
@$(python) -m build
90+
build: install-releasetools
91+
$(python) -m build
9292

9393
pypi-upload: install-releasetools
94-
twine upload --skip-existing --verbose dist/{*.tar.gz,*.whl}
94+
twine upload --skip-existing dist/{*.tar.gz,*.whl}
9595

9696
install-doctools: setup-virtualenv
9797
@$(pip) install --quiet --requirement requirements-docs.txt --upgrade
@@ -112,3 +112,12 @@ install-tests: setup-virtualenv
112112

113113
grafana-start:
114114
cd tests/grafana; docker compose up
115+
116+
117+
.PHONY: build
118+
.PHONY: bumpversion
119+
.PHONY: format
120+
.PHONY: install-releasetools
121+
.PHONY: pypi-upload
122+
.PHONY: release
123+
.PHONY: test

0 commit comments

Comments
 (0)