Skip to content

Commit

Permalink
fix style and add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Nov 22, 2023
1 parent 71fb5e5 commit 9f8b131
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion python/cugraph/cugraph/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import os
import tempfile
# Avoid timeout during shutdown
from dask_cuda.utils_test import IncreasedCloseTimeoutNanny

# module-wide fixtures
Expand All @@ -42,7 +43,8 @@ def dask_client():
# DASK_WORKER_DEVICES env vars and use them when creating a client if
# set. start_dask_client will also initialize the Comms singleton.
dask_client, dask_cluster = start_dask_client(
worker_class=IncreasedCloseTimeoutNanny)
worker_class=IncreasedCloseTimeoutNanny
)

yield dask_client

Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/tests/link_analysis/test_hits_mg.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setup_function():
fixture_params = gen_fixture_params_product(
(datasets, "graph_file"),
([50], "max_iter"),
([1.0e-4], "tol"), # FIXME: Temporarily lower tolerance
([1.0e-4], "tol"), # FIXME: Temporarily lower tolerance
(IS_DIRECTED, "directed"),
)

Expand Down

0 comments on commit 9f8b131

Please sign in to comment.