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 ebbe4e2 commit f646868Copy full SHA for f646868
conda-recipe/run_test.sh
@@ -4,4 +4,8 @@ set -e
4
5
${PYTHON} -c "import dpctl; print(dpctl.__version__)"
6
${PYTHON} -m dpctl -f
7
-${PYTHON} -m pytest -q -ra --disable-warnings --cov dpctl --cov-report term-missing --pyargs dpctl -vv
+if ${PYTHON} --version 2>&1 | grep -q '^Python 3\.13'; then
8
+ ${PYTHON} -m pytest -q -ra --disable-warnings --pyargs dpctl -vv
9
+else
10
+ ${PYTHON} -m pytest -q -ra --disable-warnings --cov dpctl --cov-report term-missing --pyargs dpctl -vv
11
+fi
0 commit comments