We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f88b5a1 commit f930643Copy full SHA for f930643
1 file changed
.github/scripts/run_test.sh
@@ -5,7 +5,15 @@ PYTHON_VERSION="$1"
5
DESCRIPTION="$2"
6
COVERAGE_XML="sonarcloud-coverage-$3.xml"
7
8
-echo "Using Python $PYTHON_VERSION again"
+# show cwd
9
+echo "Current working directory: $(pwd)"
10
+# list contents of venv
11
+
12
+ls -la .venv
13
+# list contents of poetry.lock
14
+ls -la poetry.lock
15
16
+echo "Using Python Version $PYTHON_VERSION"
17
poetry config virtualenvs.in-project true
18
19
# Only create/use the env and install if .venv does not exist
0 commit comments