ci: keep live-integration pytest out of PR CI for python packages#1
Merged
Conversation
adk-plugin and langchain ship live-integration test suites (they construct a real DaytonaPlugin and execute code in real Daytona sandboxes, needing DAYTONA_API_KEY). Running them on every PR would fail without credentials and is slow/costly. PR CI for the Python packages now runs install + ruff only; live tests will move to a separate opt-in 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
PR CI for the Python packages (
adk-plugin,langchain-data-analysis) now runs install + ruff lint only — thepyteststeps are removed.Why
Their test suites are live-integration: they construct a real
DaytonaPluginand execute code inside real Daytona sandboxes, which needsDAYTONA_API_KEY. Running them on every PR would fail without credentials and is slow/costly.Live integration tests will move to a separate opt-in (manual/scheduled) workflow later.
Scope
.github/workflows/ci.yml(no package paths) → release-please stays silent.protect-mainruleset — also a smoke test ofci-success+pr-titlegating.Need help on this PR? Tag
/codesmithwith what you need. Autofix is disabled.Summary by cubic
Update PR CI to skip live-integration
pytestforadk-pluginandlangchain-data-analysis, running install + ruff lint only. This avoidsDAYTONA_API_KEYcredential failures and speeds up PR checks; live tests will run in a separate opt-in workflow later.Written for commit 1391df4. Summary will update on new commits.