VOL-2724 Handle path too long when invoking pip
Change-Id: I105fc94d152a2d68b9019737cc61d4e775308d90
diff --git a/Makefile b/Makefile
index 5200994..45c174d 100644
--- a/Makefile
+++ b/Makefile
@@ -127,10 +127,11 @@
# self-test, lint, and setup targets
# virtualenv for the robot tools
+# VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs
vst_venv:
virtualenv -p python3 $@ ;\
source ./$@/bin/activate ;\
- pip install -r requirements.txt
+ python3 ./$@/bin/pip install -r requirements.txt
test: lint