We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e121f commit a5a5e64Copy full SHA for a5a5e64
conda-recipe/run_test.bat
@@ -37,5 +37,8 @@ if %errorlevel% neq 0 exit 1
37
"%PYTHON%" -m dpctl -f
38
if %errorlevel% neq 0 exit 1
39
40
-"%PYTHON%" -m pytest -ra --pyargs dpnp
+"%PYTHON%" -m pytest -ra --pyargs dpnp --deselect=tests/tensor
41
+if %errorlevel% neq 0 exit 1
42
+
43
+"%PYTHON%" -m pytest -ra --pyargs dpnp.tests.tensor
44
conda-recipe/run_test.sh
@@ -37,4 +37,6 @@ set -e
$PYTHON -c "import dpnp; print(dpnp.__version__)"
$PYTHON -m dpctl -f
-$PYTHON -m pytest -ra --pyargs dpnp
+$PYTHON -m pytest -ra --pyargs dpnp --deselect=tests/tensor
+$PYTHON -m pytest -ra --pyargs dpnp.tests.tensor
0 commit comments