File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ rlJournalStart
1212 fi
1313 rlRun " pushd $tmp "
1414 rlRun " tree" 0 " Show directory tree"
15+ rlRun " python3 -m venv .venv --system-site-packages" 0 " Create venv with system packages"
16+ rlRun " source .venv/bin/activate" 0 " Activate venv"
1517 rlRun " set -o pipefail"
1618 rlPhaseEnd
1719
1820 rlPhaseStartTest
19- rlRun " pip install --user . --config-settings=cmake.verbose=true --no-index --no-build-isolation" 0 " Build the python project"
21+ rlRun " pip install . -v --config-settings=cmake.verbose=true --no-index --no-build-isolation" 0 " Build the python project"
2022 if [ " ${HAS_PYTEST} " == True ]; then
21- rlRun " pytest" 0 " Run built-in pytest"
23+ rlRun " python3 -m pytest" 0 " Run built-in pytest"
2224 else
2325 rlRun " python3 test.py" 0 " Test project is installed correctly"
2426 fi
You can’t perform that action at this time.
0 commit comments