Skip to content

Commit 0e0392b

Browse files
committed
Fix selection of Python version when testing package
Ref. None
1 parent dffc97c commit 0e0392b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ test_package: $(PROJECT_MANAGEMENT)
519519
ifndef PACKAGE
520520
$(error PACKAGE is undefined, set PACKAGE to the name or path of the package to be tested)
521521
endif
522-
$(POETRY) run python -m venv --clear $(BUILD_DIR)/venv
522+
$(POETRY) run $(PYTHON) -m venv --clear $(BUILD_DIR)/venv
523523
$(BUILD_DIR)/venv/bin/pip install $(PIP_ARGS) $(PACKAGE) pytest
524524
$(BUILD_DIR)/venv/bin/rflx --version
525525
mkdir -p $(BUILD_DIR)/tests

0 commit comments

Comments
 (0)