Export the agent e2e suite as a release bundle for downstream repos#425
Open
ling-senpeng13 wants to merge 1 commit into
Open
Export the agent e2e suite as a release bundle for downstream repos#425ling-senpeng13 wants to merge 1 commit into
ling-senpeng13 wants to merge 1 commit into
Conversation
…eam repos Package the agent e2e suite (e2e/) into a self-contained, version-stamped tarball (conductor-ai-e2e-python-<version>.tar.gz) attached to GitHub releases, so downstream repos (e.g. orkes-io/orkes-conductor) can pin the suite to the exact python-sdk release they run against. Replaces the agentspan-sdk-e2e-python bundles formerly cut from agentspan-ai/agentspan. Mirrors conductor-oss/java-sdk (conductor-ai-e2e/release/) and conductor-oss/javascript-sdk (scripts/). - scripts/package-e2e-bundle.sh: stages e2e/ verbatim (suites import conductor.ai.agents by package) + requirements.txt pinning conductor-python[agents]==<version> from PyPI + run.sh + README; deps mirror the agent-e2e.yml install step - scripts/test-package-e2e-bundle.sh: static validator (file parity, py_compile, version pin, binary assets uncorrupted; no network) - .github/workflows/release-agent-e2e-bundle.yml: package + validate + sha256 + upload on release: published. NOTE: python-sdk tags have no `v` prefix; pip's PEP 440 normalization makes ==2.0.0-rc2 resolve 2.0.0rc2 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Packages the agent e2e suite (
e2e/) into a self-contained, version-stamped tarball —conductor-ai-e2e-python-<version>.tar.gz— attached to every GitHub release, so downstream repos (e.g. orkes-io/orkes-conductor) can pin the e2e suite to the exact python-sdk release they run against. Replaces theagentspan-sdk-e2e-python-*bundles formerly cut from agentspan-ai/agentspan. Mirrors conductor-oss/java-sdk#128 and conductor-oss/javascript-sdk#134.scripts/package-e2e-bundle.sh— stagese2e/verbatim (suites importconductor.ai.agentsby package) +requirements.txtpinningconductor-python[agents]==<version>from PyPI +run.sh(mirrors the agent-e2e.yml pytest invocation:-n 3 --dist=loadgroup, junit toresults/junit-e2e.xml) + README.scripts/test-package-e2e-bundle.sh— static validator (file parity,py_compile, version pin, binary assets uncorrupted; no network)..github/workflows/release-agent-e2e-bundle.yml— packages, validates, sha256s, uploads onrelease: published. Handles this repo's no-v-prefix tags; pip's PEP 440 normalization makes==2.0.0-rc2resolve the PyPI artifact2.0.0rc2.Validation
conductor-python[agents]==2.0.0-rc2from PyPI;conductor.ai.agentsimports3.32.0-rc.8(real LLM calls, python 3.11): 133/134 executed tests pass (19 env-conditional skips, 1 xfail). The CLI-dependent tests need a current agentspan CLI (validated with the pinned0.4.4, same as agent-e2e.yml — a stale local CLI fails them on retired endpoints).Known issue surfaced (pre-existing, not introduced here)
test_suite11_langgraph.py::test_messages_state_detectionfails deterministically with langgraph1.2.9(_input_is_messagesisNone). The[agents]extra floats langgraph>=1.1.3and langchain forces>=1.2.5, so every fresh install gets a version where this fails — in-repo CI will hit it on its next cold pip resolve too. Also noted: the@credentialslifecycle tests hard-fail (FileNotFoundError) rather than skip when the CLI is absent, unlike the cli_skills suite which skips gracefully.🤖 Generated with Claude Code