Skip to content

Commit 718d4d0

Browse files
authored
restart testing (#532)
1 parent 5a5e841 commit 718d4d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/dask/test_dask_clustering.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import rapids_singlecell as rsc
88

99

10-
@pytest.mark.parametrize("clustering_function", [rsc.tl.louvain]) # rsc.tl.leiden,
10+
@pytest.mark.parametrize("clustering_function", [rsc.tl.leiden, rsc.tl.louvain])
1111
def test_dask_clustering(client, clustering_function):
1212
adata = pbmc3k_processed()
1313
clustering_function(adata, use_dask=True, key_added="test_dask")
@@ -20,7 +20,7 @@ def test_dask_clustering(client, clustering_function):
2020
)
2121

2222

23-
@pytest.mark.parametrize("clustering_function", [rsc.tl.louvain]) # rsc.tl.leiden,
23+
@pytest.mark.parametrize("clustering_function", [rsc.tl.leiden, rsc.tl.louvain])
2424
@pytest.mark.parametrize("resolution", [0.1, [0.5, 1.0]])
2525
def test_dask_clustering_resolution(client, clustering_function, resolution):
2626
adata = pbmc3k_processed()

0 commit comments

Comments
 (0)