Skip to content

Commit cf483d7

Browse files
Merge branch 'main' into test-dependencies-in-pyproject
2 parents 18d41b0 + 4899d26 commit cf483d7

File tree

6 files changed

+8
-0
lines changed

6 files changed

+8
-0
lines changed

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
- pre-commit
2323
- pytest
2424
- pytest-cov
25+
- pytest-rerunfailures!=16.0.0
2526
- pytest-timeout
2627
- python>=3.10,<3.14
2728
- rapids-build-backend>=0.4.0,<0.5.0dev0

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
- pre-commit
2323
- pytest
2424
- pytest-cov
25+
- pytest-rerunfailures!=16.0.0
2526
- pytest-timeout
2627
- python>=3.10,<3.14
2728
- rapids-build-backend>=0.4.0,<0.5.0dev0

conda/environments/all_cuda-130_arch-aarch64.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
- pre-commit
2323
- pytest
2424
- pytest-cov
25+
- pytest-rerunfailures!=16.0.0
2526
- pytest-timeout
2627
- python>=3.10,<3.14
2728
- rapids-build-backend>=0.4.0,<0.5.0dev0

conda/environments/all_cuda-130_arch-x86_64.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ dependencies:
2222
- pre-commit
2323
- pytest
2424
- pytest-cov
25+
- pytest-rerunfailures!=16.0.0
2526
- pytest-timeout
2627
- python>=3.10,<3.14
2728
- rapids-build-backend>=0.4.0,<0.5.0dev0

dask_cuda/tests/test_local_cuda_cluster.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ async def test_no_memory_limits_cudaworker():
190190

191191

192192
@gen_test(timeout=20)
193+
@pytest.mark.flaky(
194+
reruns=3,
195+
)
193196
async def test_all_to_all():
194197
async with LocalCUDACluster(
195198
CUDA_VISIBLE_DEVICES="0,1",

dependencies.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ dependencies:
213213
packages:
214214
- pytest
215215
- pytest-cov
216+
- pytest-rerunfailures!=16.0.0 # See https://github.com/pytest-dev/pytest-rerunfailures/issues/302
216217
- pytest-timeout
217218
- output_types: [conda]
218219
packages:

0 commit comments

Comments
 (0)