We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cfe0f0 commit 6e9e00cCopy full SHA for 6e9e00c
Makefile
@@ -62,7 +62,9 @@ createCoverageReports:
62
63
# Create the Python virtual environment for system tests, and install the necessary dependencies
64
setupPython:
65
- @test -d .venv || (python3 -m venv .venv && .venv/bin/pip install --upgrade pip && .venv/bin/pip install -r requirements.txt)
+ @test -d .venv || python3 -m venv .venv
66
+ .venv/bin/pip install --upgrade pip
67
+ .venv/bin/pip install -r requirements.txt
68
69
# Run system tests for sample applications
70
systemTest: setupPython
0 commit comments