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 76c6b2b commit 715a506Copy full SHA for 715a506
.github/workflows/conda-package.yml
@@ -473,7 +473,12 @@ jobs:
473
CC=dpcpp CXX=dpcpp LDSHARED="dpcpp -shared" \
474
python setup.py build_ext --inplace || exit 1
475
conda deactivate
476
- LD_LIBRARY_PATH=${CONDA_PREFIX}/lib python run.py || exit 1
+ if [ -e tests ]
477
+ then
478
+ LD_LIBRARY_PATH=${CONDA_PREFIX}/lib python -m pytest tests || exit 1
479
+ else
480
+ LD_LIBRARY_PATH=${CONDA_PREFIX}/lib python run.py || exit 1
481
+ fi
482
popd
483
done
484
cd ../c
0 commit comments