Skip to content

Commit e3f712d

Browse files
committed
pytest: ignore clock test until platform support is in
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
1 parent 329d3c9 commit e3f712d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

python/tests/runtime/test_clock_advance.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ def _view_now(pipeline) -> str:
5555

5656

5757
class TestClockAdvance(unittest.TestCase):
58+
@unittest.skip(
59+
"POST /clock/advance is new in this PR; re-enable once the platform CI is updated."
60+
)
5861
def test_anchor_plus_advance(self):
5962
pipeline_name = unique_pipeline_name("test_clock_advance")
6063

@@ -132,6 +135,9 @@ def test_anchor_plus_advance(self):
132135
pipeline.stop(force=True)
133136
pipeline.clear_storage()
134137

138+
@unittest.skip(
139+
"POST /clock/advance is new in this PR; re-enable once the platform CI is updated."
140+
)
135141
def test_pre_epoch_anchor(self):
136142
"""Pre-1970 anchor: `now_ms` is negative end-to-end."""
137143
pipeline_name = unique_pipeline_name("test_pre_epoch_clock")

0 commit comments

Comments
 (0)