diff --git a/conda-recipe/run_test.bat b/conda-recipe/run_test.bat index 833ddfd21c..85cac031e7 100644 --- a/conda-recipe/run_test.bat +++ b/conda-recipe/run_test.bat @@ -3,8 +3,8 @@ "%PYTHON%" -c "import dpctl; print(dpctl.__version__)" if errorlevel 1 exit 1 -"%PYTHON%" -c "import dpctl; dpctl.lsplatform()" +"%PYTHON%" -m dpctl -f if errorlevel 1 exit 1 -python -m pytest -q -p no:faulthandler -ra --disable-warnings --pyargs dpctl -vv +python -m pytest -q -ra --disable-warnings --pyargs dpctl -vv if errorlevel 1 exit 1 diff --git a/conda-recipe/run_test.sh b/conda-recipe/run_test.sh index 4b3566d7bd..63ae7996cc 100644 --- a/conda-recipe/run_test.sh +++ b/conda-recipe/run_test.sh @@ -3,5 +3,5 @@ set -e ${PYTHON} -c "import dpctl; print(dpctl.__version__)" -${PYTHON} -c "import dpctl; dpctl.lsplatform(verbosity=2)" -${PYTHON} -m pytest -q -ra --disable-warnings -p no:faulthandler --cov dpctl --cov-report term-missing --pyargs dpctl -vv +${PYTHON} -m dpctl -f +${PYTHON} -m pytest -q -ra --disable-warnings --cov dpctl --cov-report term-missing --pyargs dpctl -vv