Skip to content

Commit 557367c

Browse files
committed
docs: update README to include pixi instructions for running tests
1 parent 16f70cc commit 557367c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,19 @@ they are compiled for the appropriate compute capability.
3737
```
3838
cd testing
3939
# Optionally, build test binaries and point to their location for the test suite
40-
make
40+
make -j $(nproc)
4141
export NUMBA_CUDA_TEST_BIN_DIR=`pwd`
4242
# Execute tests
4343
pytest -n auto -v
4444
```
4545

46+
Alternatively, you can use [pixi](https://pixi.sh/latest/installation/) to wrap all of that up for you:
47+
48+
```
49+
# run tests against CUDA 13
50+
pixi run -e cu13 test -n auto -v
51+
```
52+
4653

4754
Testing should discover the `numba.cuda` module from the `numba_cuda` package. You
4855
can check where `numba.cuda` files are being located by running

0 commit comments

Comments
 (0)