From d554e0049b0ce22f81dd4a9bcdb3992246f19cbb Mon Sep 17 00:00:00 2001 From: Tim Conley Date: Wed, 8 Apr 2026 10:06:57 -0700 Subject: [PATCH 1/2] Otel is now needed for conftest.py --- .github/workflows/build-binaries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index a16a61365..63a86cc94 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -67,7 +67,7 @@ jobs: if [ "$RUNNER_OS" = "Windows" ]; then bindir=Scripts fi - ./.venv/$bindir/pip install pytest pytest_asyncio grpcio pydantic + ./.venv/$bindir/pip install pytest pytest_asyncio grpcio pydantic opentelemetry-api opentelemetry-sdk ./.venv/$bindir/pip install --prefer-binary ../dist/*.whl ./.venv/$bindir/python -m pytest -s tests/worker/test_workflow.py -k test_workflow_hello From 71626a30d3aee87a4e3717db39f99fa764ca36cf Mon Sep 17 00:00:00 2001 From: Tim Conley Date: Wed, 8 Apr 2026 10:08:35 -0700 Subject: [PATCH 2/2] Add branch for testing --- .github/workflows/build-binaries.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 63a86cc94..ab0c3ed69 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -4,6 +4,7 @@ on: branches: - main - "releases/*" + - build_binaries_otel permissions: contents: read