Skip to content

Commit 9f63af1

Browse files
committed
Update test comments, warnings
1 parent 20428a6 commit 9f63af1

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

tests/durabletask-azuremanaged/test_dts_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from durabletask.azuremanaged.worker import DurableTaskSchedulerWorker
1414

1515
# NOTE: These tests assume a sidecar process is running. Example command:
16-
# docker run --name durabletask-sidecar -p 4001:4001 --env 'DURABLETASK_SIDECAR_LOGLEVEL=Debug' --rm cgillum/durabletask-sidecar:latest start --backend Emulator
16+
# docker run -i -p 8080:8080 -p 8082:8082 -d mcr.microsoft.com/dts/dts-emulator:latest
1717
pytestmark = pytest.mark.dts
1818

1919
# Read the environment variables

tests/durabletask-azuremanaged/test_dts_orchestration_versioning_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from durabletask.azuremanaged.worker import DurableTaskSchedulerWorker
1212

1313
# NOTE: These tests assume a sidecar process is running. Example command:
14-
# docker run --name durabletask-sidecar -p 4001:4001 --env 'DURABLETASK_SIDECAR_LOGLEVEL=Debug' --rm cgillum/durabletask-sidecar:latest start --backend Emulator
14+
# docker run -i -p 8080:8080 -p 8082:8082 -d mcr.microsoft.com/dts/dts-emulator:latest
1515
pytestmark = pytest.mark.dts
1616

1717
# Read the environment variables

tests/durabletask/test_orchestration_e2e.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
from durabletask import client, task, worker
1212

1313
# NOTE: These tests assume a sidecar process is running. Example command:
14-
# docker run --name durabletask-sidecar -p 4001:4001 --env 'DURABLETASK_SIDECAR_LOGLEVEL=Debug' --rm cgillum/durabletask-sidecar:latest start --backend Emulator
14+
# go install github.com/microsoft/durabletask-go@main
15+
# durabletask-go --port 4001
1516
pytestmark = pytest.mark.e2e
1617

1718

tests/durabletask/test_orchestration_versioning_e2e.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,21 @@
22
# Licensed under the MIT License.
33

44
import json
5+
import warnings
56

67
import pytest
78

89
from durabletask import client, task, worker
910

1011
# NOTE: These tests assume a sidecar process is running. Example command:
11-
# docker run --name durabletask-sidecar -p 4001:4001 --env 'DURABLETASK_SIDECAR_LOGLEVEL=Debug' --rm cgillum/durabletask-sidecar:latest start --backend Emulator
12+
# go install github.com/microsoft/durabletask-go@main
13+
# durabletask-go --port 4001
1214
pytestmark = pytest.mark.e2e
1315

1416

1517
def test_versioned_orchestration_succeeds():
18+
warnings.warn("Skipping test_versioned_orchestration_succeeds. "
19+
"Currently not passing as the sidecar does not support versioning yet")
1620
return # Currently not passing as the sidecar does not support versioning yet
1721
# Remove these lines to run the test after the sidecar is updated
1822

0 commit comments

Comments
 (0)