Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,13 @@ jobs:
- name: Print versions
run: python -m pip list

- name: Run GPU tests
- name: Test CUDA kernels
run: python -m pytest -vv -rs tests-cuda-kernels

- name: Test CUDA kernels with explicitly defined values
run: python -m pytest -vv -rs tests-cuda-kernels-explicit

- name: Test CUDA non-kernel (Python)
run: >-
python -m pytest -vv -rs tests-cuda

Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ def clean(session):
pathlib.Path("awkward-cpp", "tests-cpu-kernels"),
pathlib.Path("awkward-cpp", "tests-cpu-kernels-explicit"),
pathlib.Path("tests-cuda-kernels"),
pathlib.Path("tests-cuda-kernels-explicit"),
)
if args.docs or clean_all:
remove_if_found(pathlib.Path("docs", "reference", "generated", "kernels.rst"))
Expand Down
2 changes: 0 additions & 2 deletions requirements-test-gpu.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@ numba>=0.60
numba-cuda
pyarrow
pytest>=6
pytest-cov
pytest-xdist
uproot>=5
Loading