Skip to content

Commit 9628875

Browse files
committed
Running all dts tests in publish pipeline
Signed-off-by: Ryan Lettieri <ryanLettieri@microsoft.com>
1 parent fe7e102 commit 9628875

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/publish-dts-sdk.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
6363
- name: Run the tests
6464
working-directory: tests/durabletask-azuremanaged
65-
run: python -m test_activity_sequence
65+
run: |
66+
PYTHONPATH=$GITHUB_WORKSPACE pytest -m "dts" --verbose
6667
6768
publish:
6869
needs: run-docker-tests

tests/durabletask-azuremanaged/test_dts_orchestration_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# NOTE: These tests assume a sidecar process is running. Example command:
1717
# docker run --name durabletask-sidecar -p 4001:4001 --env 'DURABLETASK_SIDECAR_LOGLEVEL=Debug' --rm cgillum/durabletask-sidecar:latest start --backend Emulator
18-
pytestmark = pytest.mark.e2e
18+
pytestmark = pytest.mark.dts
1919

2020
# Read the environment variables
2121
taskhub_name = os.getenv("TASKHUB", "default")

0 commit comments

Comments
 (0)