Skip to content

Commit

Permalink
reponse to code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpotts committed Jan 10, 2025
1 parent 0e57ded commit 3aa79eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions arkouda/comm_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"get_comm_diagnostics_cache_prefetch_waited",
"get_comm_diagnostics_cache_readahead_unused",
"get_comm_diagnostics_cache_readahead_waited",
"get_comm_diagnostics_wait_nb",
]


Expand Down
1 change: 1 addition & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ testpaths =
tests/client_dtypes_test.py
tests/client_test.py
tests/coargsort_test.py
tests/comm_diagnostics_test.py
tests/dataframe_test.py
tests/datetime_test.py
tests/extrema_test.py
Expand Down
4 changes: 2 additions & 2 deletions tests/comm_diagnostics_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from arkouda.comm_diagnostics import *


diagonstic_stats_functions = [
diagnostic_stats_functions = [
"get_comm_diagnostics_put",
"get_comm_diagnostics_get",
"get_comm_diagnostics_put_nb",
Expand All @@ -28,7 +28,7 @@

class TestCommDiagnostics:

@pytest.mark.parametrize("op", diagonstic_stats_functions)
@pytest.mark.parametrize("op", diagnostic_stats_functions)
@pytest.mark.parametrize("size", pytest.prob_size)
def test_comm_diagnostics_single_locale(self, op, size):
start_comm_diagnostics()
Expand Down

0 comments on commit 3aa79eb

Please sign in to comment.