Add a real live Linear/Codex E2E target#44
Merged
frantic-openai merged 1 commit intomainfrom Mar 10, 2026
Merged
Conversation
Summary: - add an opt-in live Elixir test that creates a real Linear project and issue, runs a real Codex turn, and verifies workspace plus Linear side effects - require Codex to post a Linear comment and close the issue before the test marks the project completed - add `make e2e` with fast failures for missing `LINEAR_API_KEY` or `codex`, and document the new entrypoint in the Elixir README Rationale: - make the external Linear and Codex path reproducible from one command instead of ad hoc shell incantations - keep normal CI safe by skipping the live test unless the dedicated E2E target enables it, while still surfacing missing auth clearly - verify the real integration boundary that matters: Codex must mutate Linear itself rather than relying on local shims or post-run cleanup Tests: - make -C elixir all - env -u LINEAR_API_KEY make -C elixir e2e - LINEAR_API_KEY=$(tr -d '\r\n' < ~/.linear_api_key) SYMPHONY_RUN_LIVE_E2E=1 mix test test/symphony_elixir/live_e2e_test.exs Co-authored-by: Codex <codex@openai.com>
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.
Context
Add a real end-to-end path for Symphony Elixir that exercises Linear and
Codex together, and make it easy to invoke explicitly from one Make target.
TL;DR
Add a real live Linear/Codex E2E test plus a
make e2eentrypoint.Summary
make e2ewith clear failures for missingLINEAR_API_KEYorcodex.Alternatives
mix testcommands and environment toggles.mutate Linear itself during the turn.
Test Plan
make -C elixir allenv -u LINEAR_API_KEY make -C elixir e2eLINEAR_API_KEY=$(tr -d '\r\n' < ~/.linear_api_key) SYMPHONY_RUN_LIVE_E2E=1 mix test test/symphony_elixir/live_e2e_test.exs