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 23729a2 commit 98e3d78Copy full SHA for 98e3d78
.github/workflows/build-and-test.yml
@@ -258,16 +258,13 @@ 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 update
265
apt install -y build-essential
266
- ls -l $CUDA_HOME/include
267
- CPLUS_INCLUDE_PATH="$CUDA_HOME/include" cythonize -3 -i test_*.pyx
+ bash tests_cython/build_tests.sh
268
elif [[ "${{ matrix.host-platform }}" == win* ]]; then
269
# TODO: enable this once win-64 runners are up
270
exit 1
271
fi
272
- pytest -rxXs .
+ pytest -rxXs tests_cython
273
popd
0 commit comments