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 13b6015 commit fb4fde9Copy full SHA for fb4fde9
docs/examples/test.sh
@@ -12,11 +12,13 @@ rlJournalStart
12
fi
13
rlRun "pushd $tmp"
14
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"
17
rlRun "set -o pipefail"
18
rlPhaseEnd
19
20
rlPhaseStartTest
- 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"
22
if [ "${HAS_PYTEST}" == True ]; then
23
rlRun "pytest" 0 "Run built-in pytest"
24
else
0 commit comments