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 8643b65 commit 0ed2766Copy full SHA for 0ed2766
test/run-pytest
@@ -8,4 +8,9 @@
8
9
THISDIR=$(dirname ${BASH_SOURCE[0]})
10
11
-cd "${THISDIR}" && python3.12 -m pytest -s -rA --showlocals -vv test_container_*.py
+PYTHON_VERSION="3.12"
12
+if [[ ! -f "/usr/bin/python$PYTHON_VERSION" ]]; then
13
+ PYTHON_VERSION="3.13"
14
+fi
15
+
16
+cd "${THISDIR}" && "python${PYTHON_VERSION}" -m pytest -s -rA --showlocals -vv test_container_*.py
0 commit comments