File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ SHELL=/bin/bash -euo pipefail
22.DEFAULT_GOAL := help
33
44WHEEL_DIR ?= wheel_dist
5+ PYTHON_VERSION? =3.11
56
67clean : # # cleans the build artifacts
78 rm -Rf build/ dist/ * .egg-info $(WHEEL_DIR )
@@ -11,8 +12,11 @@ install: ## install dependencies
1112 pip install .
1213.PHONY : install
1314
14- test : install
15- python -m unittest discover -vf
15+ # test: install
16+ # python -m unittest discover -vf
17+ # .PHONY: test
18+
19+ test : update-version wheel wheel-check
1620.PHONY : test
1721
1822update-version :
@@ -35,7 +39,6 @@ doc-lint: ## Verify markdown rules
3539 docker run --rm -v ${PWD} :/data mivok/markdownlint src
3640.PHONY : doc-lint
3741
38- PYTHON_VERSION? =3.11
3942build : build-docker clean # # build the python-conprof using a dockerized python runtime
4043 PYTHON_VERSION=$(PYTHON_VERSION ) docker-compose run --rm python make update-version wheel wheel-check
4144
You can’t perform that action at this time.
0 commit comments