Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
from temporalio.worker import Worker
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_nexus_client_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
from temporalio.testing import WorkflowEnvironment
from temporalio.worker import Worker

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_nexus_worker_shutdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
make_nexus_endpoint_name,
)

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_signal_link_propagation_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
workflow_event_link_event_type,
)

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server

EventType = temporalio.api.enums.v1.EventType
Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_standalone_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
# ---------------------------------------------------------------------------


# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
4 changes: 4 additions & 0 deletions tests/nexus/test_temporal_extstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
from tests.helpers.nexus import make_nexus_endpoint_name
from tests.test_extstore import InMemoryTestDriver

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server
Comment thread
jmaeagle99 marked this conversation as resolved.

PAYLOAD_SIZE = 4096
PAYLOAD_SIZE_THRESHOLD = 1024
_STORE_FAILURE_MESSAGE = "external storage store failed"
Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_temporal_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from tests.helpers import EventType, assert_event_subsequence, assert_eventually
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_use_existing_conflict_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
from temporalio.worker import Worker
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_workflow_caller.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ class OpDefinitionType(IntEnum):
LONGHAND = 1


# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_workflow_caller_cancellation_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
from tests.helpers import LogCapturer, assert_event_subsequence, assert_eventually
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
has_event,
)

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_workflow_caller_error_chains.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
from temporalio.worker import Worker
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_workflow_caller_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
from tests.helpers import LogCapturer, assert_eq_eventually
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server

operation_invocation_counts = Counter[str]()
Expand Down
2 changes: 2 additions & 0 deletions tests/nexus/test_workflow_run_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
from temporalio.worker import Worker
from tests.helpers.nexus import make_nexus_endpoint_name

# Cloud CI's namespace credentials cannot manage Nexus endpoints.
# See https://github.com/temporalio/sdk-python/issues/1704.
pytestmark = pytest.mark.requires_local_server


Expand Down
Loading