Skip to content

Commit

Permalink
Skip tests for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
LinZhihao-723 committed Nov 30, 2024
1 parent 5a53fe5 commit 048531d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1111,6 +1111,10 @@ def setUp(self) -> None:
self._setup_logging()


@unittest.skipIf(
"macOS" == os.getenv("RUNNER_OS"),
"Github macos runner tends to fail LLT tests with timing issues.",
)
class TestClpKeyValuePairStreamingHandlerLogLevelTimeoutRaw(
TestClpKeyValuePairHandlerLogLevelTimeoutBase
):
Expand All @@ -1135,6 +1139,10 @@ def _setup_handler(self) -> None:
self._setup_logging()


@unittest.skipIf(
"macOS" == os.getenv("RUNNER_OS"),
"Github macos runner tends to fail LLT tests with timing issues.",
)
class TestClpKeyValuePairStreamingHandlerLogLevelTimeoutZstd(
TestClpKeyValuePairHandlerLogLevelTimeoutBase
):
Expand Down

0 comments on commit 048531d

Please sign in to comment.