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 bfd162a commit 55a2a4fCopy full SHA for 55a2a4f
scripts/run_tests.sh
@@ -15,6 +15,14 @@ echo -e "\033[34mRunning Python tests...\033[0m"
15
pytest -rs --color=yes ./tests/ --ignore ./tests/gpu/excluded
16
17
# Run C++ tests
18
+echo -e "\033[34mBuilding C++ tests...\033[0m"
19
+# Clean up build directory
20
+rm -rf build
21
+# TODO: fix `pip install .` for not generating the build directory
22
+# Build the CUDA extension module
23
+cmake -S . -B build
24
+cmake --build build
25
+
26
echo -e "\033[34mRunning C++ tests...\033[0m"
27
for test in ./build/test_*; do
28
echo "Running $test..."
0 commit comments