testing: Use pip from venv to download dependencies

pip3 isn't installed in the base image anymore since 21bf3e41f9
("testing: Use venv for strongTNC").
This commit is contained in:
Tobias Brunner
2023-08-28 17:49:26 +02:00
parent a619356b5f
commit 5005c2e4ab
+2 -2
View File
@@ -18,8 +18,8 @@ $(ZIP):
@touch $@
.$(PKG)-deps-$(REV): .$(PKG)-unpacked-$(REV)
mkdir -p $(DEPS)
pip3 download -d $(DEPS) -r $(DIR)/requirements.txt
python3 -m venv $(VENV)
$(VENV)/bin/pip download -d $(DEPS) -r $(DIR)/requirements.txt
@touch $@
install: .$(PKG)-deps-$(REV)