Skip to content

Commit c340294

Browse files
committed
do not run wheel related cmds in its own container
1 parent 7db4048 commit c340294

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ SHELL=/bin/bash -euo pipefail
22
.DEFAULT_GOAL := help
33

44
WHEEL_DIR ?= wheel_dist
5+
PYTHON_VERSION?=3.11
56

67
clean: ## 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

1822
update-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
3942
build: 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

0 commit comments

Comments
 (0)