Skip to content
Merged
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
5 changes: 0 additions & 5 deletions tests/comm_diagnostics_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@

@pytest.mark.requires_chapel_module("CommDiagnosticsMsg")
class TestCommDiagnostics:
@pytest.mark.skip_if_max_rank_greater_than(1)
def test_comm_diagnostics_docstrings(self):
import doctest

Expand All @@ -51,14 +50,12 @@ def test_comm_diagnostics_docstrings(self):
)
assert result.failed == 0, f"Doctest failed: {result.failed} failures"

@pytest.mark.skip_if_max_rank_greater_than(1)
@pytest.mark.parametrize("size", pytest.prob_size)
def test_verbose_comm(self, size):
start_verbose_comm()
ak.zeros(size)
stop_verbose_comm()

@pytest.mark.skip_if_max_rank_greater_than(1)
@pytest.mark.parametrize("op", diagnostic_stats_functions)
@pytest.mark.parametrize("size", pytest.prob_size)
def test_comm_diagnostics_single_locale(self, op, size):
Expand All @@ -76,7 +73,6 @@ def test_comm_diagnostics_single_locale(self, op, size):
reset_comm_diagnostics()
stop_comm_diagnostics()

@pytest.mark.skip_if_max_rank_greater_than(1)
@pytest.mark.skip_if_nl_less_than(2)
@pytest.mark.parametrize("size", pytest.prob_size)
def test_comm_diagnostics_multi_locale(self, size):
Expand All @@ -93,7 +89,6 @@ def test_comm_diagnostics_multi_locale(self, size):

stop_comm_diagnostics()

@pytest.mark.skip_if_max_rank_greater_than(1)
def test_get_comm_diagnostics(self):
start_comm_diagnostics()

Expand Down