File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7692,7 +7692,11 @@ async def run(
76927692 return result
76937693
76947694
7695- async def test_activity_pause_cancellation_details (client : Client ):
7695+ async def test_activity_pause_cancellation_details (
7696+ client : Client , env : WorkflowEnvironment
7697+ ):
7698+ if env .supports_time_skipping :
7699+ pytest .skip ("Time-skipping server does not support pause API yet" )
76967700 with concurrent .futures .ThreadPoolExecutor () as executor :
76977701 async with Worker (
76987702 client ,
@@ -7769,7 +7773,9 @@ async def run(
77697773 return results
77707774
77717775
7772- async def test_activity_pause_unpause (client : Client ):
7776+ async def test_activity_pause_unpause (client : Client , env : WorkflowEnvironment ):
7777+ if env .supports_time_skipping :
7778+ pytest .skip ("Time-skipping server does not support pause API yet" )
77737779 with concurrent .futures .ThreadPoolExecutor () as executor :
77747780 async with Worker (
77757781 client ,
You can’t perform that action at this time.
0 commit comments