Skip to content

Commit 6e9e00c

Browse files
committed
improve
1 parent 3cfe0f0 commit 6e9e00c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ createCoverageReports:
6262

6363
# Create the Python virtual environment for system tests, and install the necessary dependencies
6464
setupPython:
65-
@test -d .venv || (python3 -m venv .venv && .venv/bin/pip install --upgrade pip && .venv/bin/pip install -r requirements.txt)
65+
@test -d .venv || python3 -m venv .venv
66+
.venv/bin/pip install --upgrade pip
67+
.venv/bin/pip install -r requirements.txt
6668

6769
# Run system tests for sample applications
6870
systemTest: setupPython

0 commit comments

Comments
 (0)