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 a13d6be commit ea703c4Copy full SHA for ea703c4
.github/workflows/build-and-test.yml
@@ -258,13 +258,14 @@ jobs:
258
pushd ./cuda_bindings
259
pip install -r requirements.txt
260
pytest -rxXs tests/
261
+ cd tests_cython
262
if [[ "${{ matrix.host-platform }}" == linux* ]]; then
263
# cython tests require gcc
264
apt install -y build-essential
- bash tests/cython/build_tests.sh
265
+ CPLUS_INCLUDE_PATH=$CUDA_HOME/include:$CPLUS_INCLUDE_PATH cythonize -3 -i test_*.pyx
266
elif [[ "${{ matrix.host-platform }}" == win* ]]; then
267
# TODO: enable this once win-64 runners are up
268
exit 1
269
fi
- pytest -rxXs tests/cython
270
+ pytest -rxXs .
271
popd
0 commit comments