Skip to content

Commit

Permalink
Fix: Makefile VENVPATH set from environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 14, 2024
1 parent 449a4f9 commit d9711fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
HERE = $(shell readlink -f `dirname .`)
PKG = $(shell basename $(HERE))
VENVPATH := $(HOME)/.virtualenvs/$(PKG)
VENVPATH ?= $(HOME)/.virtualenvs/$(PKG)
PYTEST_FLAGS = -v
TEST_DIR = tests
PY = $(VENVPATH)/bin/python3
Expand Down

0 comments on commit d9711fe

Please sign in to comment.