Skip to content

Commit d71fe31

Browse files
committed
Skip Standalone Activity tests in CI
1 parent 48d5ddc commit d71fe31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

temporalio/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3128,8 +3128,6 @@ async def __anext__(self) -> Union[ActivityExecution, WorkflowActivityExecution]
31283128
return ret
31293129

31303130

3131-
# TODO: this is named ActivityListInfo in our draft proto PR
3132-
# https://github.com/temporalio/api/pull/640/files
31333131
@dataclass(frozen=True)
31343132
class ActivityExecution:
31353133
"""Info for a standalone activity execution from list response.

tests/test_activity.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
from temporalio.exceptions import ApplicationError, CancelledError
1212
from temporalio.worker import Worker
1313

14+
pytest.skip(reason="Standalone Activity server support is under development")
15+
1416

1517
@activity.defn
1618
async def increment(input: int) -> int:

0 commit comments

Comments
 (0)