Skip to content
Draft
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
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
python: ["3.9", "3.13"]
os: [ubuntu-latest, ubuntu-arm, macos-intel, macos-arm, windows-latest]
os: [ubuntu-latest, ubuntu-arm, macos-intel, macos-arm, windows-2019]
include:
# On 3.9 there is a problem with import errors caused by pytests' loader that surface due
# to a bug in CPython (https://github.com/python/cpython/issues/91351), so we avoid using
Expand Down Expand Up @@ -72,8 +72,7 @@ jobs:
- run: poe test ${{matrix.pytestExtraArgs}} -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}.xml
timeout-minutes: 10
# Time skipping doesn't yet support ARM
- if: ${{ !endsWith(matrix.os, '-arm') }}
run: poe test ${{matrix.pytestExtraArgs}} -s --workflow-environment time-skipping --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--time-skipping.xml
- run: poe test ${{matrix.pytestExtraArgs}} -s --workflow-environment time-skipping --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}--time-skipping.xml
timeout-minutes: 10
# Check cloud if proper target and not on fork
- if: ${{ matrix.cloudTestTarget && (github.event.pull_request.head.repo.full_name == '' || github.event.pull_request.head.repo.full_name == 'temporalio/sdk-python') }}
Expand Down
2 changes: 1 addition & 1 deletion temporalio/testing/_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ async def start_time_skipping(
download_dest_dir: Optional[str] = None,
runtime: Optional[temporalio.runtime.Runtime] = None,
test_server_existing_path: Optional[str] = None,
test_server_download_version: str = "default",
test_server_download_version: str = "v1.29.0",
test_server_extra_args: Sequence[str] = [],
test_server_download_ttl: Optional[timedelta] = None,
) -> WorkflowEnvironment:
Expand Down
Loading