From 636bd1936edf7269a81bd3a6e1db478f944d8bd6 Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Thu, 26 Dec 2024 15:02:32 -0500 Subject: [PATCH] build Cython test modules --- .github/workflows/gh-build-and-test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/gh-build-and-test.yml b/.github/workflows/gh-build-and-test.yml index 919098e8..70747290 100644 --- a/.github/workflows/gh-build-and-test.yml +++ b/.github/workflows/gh-build-and-test.yml @@ -293,6 +293,11 @@ jobs: pushd ./cuda_bindings pip install -r requirements.txt pytest -rxXs tests/ + if [[ "${{ matrix.host-platform }}" == linux* ]]; then + bash tests/cython/build_tests.sh + elif [[ "${{ matrix.host-platform }}" == win* ]]; then + # TODO: enable this once win-64 runners are up + fi pytest -rxXs tests/cython popd