[Athena] Fix CI timeout: skip accuracy tests in short mode#514
Open
[Athena] Fix CI timeout: skip accuracy tests in short mode#514
Conversation
The accuracy tests (TestAccuracyAgainstBaseline, TestAccuracyDependencyChain, TestAccuracyArithmetic, TestAccuracyBranch, TestGenerateAccuracyReport) run full pipeline simulations that take >5 minutes. CI passes -short flag but these tests didn't check it, causing the Acceptance Tests job to timeout on every push. medium_test.go and polybench_test.go already had this pattern. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Open
Performance Regression AnalysisPerformance Benchmark ComparisonCompares PR benchmarks against main branch baseline. |
This was referenced Feb 13, 2026
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.
Summary
testing.Short()skip to all 5 accuracy tests inbenchmarks/accuracy_test.go-shortflag but these tests didn't check it, causing the Acceptance Tests job to timeout (>5min) on every pushmedium_test.goandpolybench_test.goalready had this pattern;accuracy_test.gowas the only file missing itImpact
This is the #1 CI blocker — every push to main fails because
TestAccuracyAgainstBaselineruns 25+ full pipeline simulations. With this fix, CI should pass for the first time.Test plan
Tests affected
TestAccuracyAgainstBaseline— skipped in short modeTestAccuracyDependencyChain— skipped in short modeTestAccuracyArithmetic— skipped in short modeTestAccuracyBranch— skipped in short modeTestGenerateAccuracyReport— skipped in short modeThese tests still run in the dedicated accuracy workflows (
accuracy-report.yml,h5-accuracy-report.yml) which don't pass-short.🤖 Generated with Claude Code