Split deterministic v1 tests from live E2Es - #2127
Merged
Merged
Conversation
hallerite
marked this pull request as ready for review
July 24, 2026 13:22
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 2951c19. Configure here.
ApprovabilityVerdict: Approved This PR reorganizes CI test execution by splitting deterministic v1 tests from live E2E tests into separate jobs. It's a standard workflow optimization that doesn't affect production behavior. The unresolved comment about You can customize Macroscope's approvability policy. Learn more. |
xeophon
force-pushed
the
agent/split-v1-ci-tests
branch
from
July 27, 2026 13:25
2951c19 to
fd09d25
Compare
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.

Overview
Separate deterministic v1 coverage from live, provider-dependent end-to-end evaluations while preserving both test surfaces.
Changes
e2emarker boundary.Impact
Deterministic regressions remain covered across every supported Python version, while provider, runtime, server, and dynamic-tool behavior stays visible in a dedicated CI result with controlled resource usage.
Note
Split deterministic v1 tests from live E2E tests in CI
-m "not e2e"without PRIME credentials; the main job also excludestests/v1from its own test run to avoid duplication.v1-e2ejob (Python 3.12 only) runs live E2E tests via-m "e2e and not prime and not modal"with PRIME credentials, and is skipped for external PRs and Dependabot.permissions: contents: readblock is added to test.yml.Changes since #2127 opened
Macroscope summarized 28314f0.
Note
Low Risk
Changes are limited to GitHub Actions wiring and test-selection markers; no application runtime or auth logic is modified.
Overview
CI now runs v1 in two lanes: the main Verifiers matrix (Python 3.11–3.13) runs non-v1 tests with
--ignore=tests/v1, then deterministic v1 via-m "not e2e"without Prime credentials or a separateprimeinstall. Live model E2Es move to a newv1-e2ejob on Python 3.12 only (-m "e2e and not prime and not modal"), with a 120-minute timeout andPRIME_*secrets scoped to that job.The live job is skipped for fork PRs and Dependabot (when secrets aren’t available). Workflow
permissions: contents: readis added.tests/v1/conftest.pycomments are updated to document the deterministic vs live pytest selectors.Reviewed by Cursor Bugbot for commit 4f1bbc9. Bugbot is set up for automated code reviews on this repo. Configure here.