Conversation
…898) The class started node once per render - about ten per run - each with a 30 s timeout, and on a slow Windows runner a cold start lost: #896, a text-only change, went red on windows-latest/3.12 with TimeoutExpired. setUpClass now renders every case in one node run with a 120 s timeout. What is asserted is unchanged; removing the unit sentence from app.js still fails the two tests that guard it. Co-Authored-By: Claude Opus 5.5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AP6LSxkr4n9dMFNSNMogmW
This was referenced Sep 23, 2026
Collaborator
Author
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.
Fixes #898.
What was wrong
#896 - a text-only change - went red on windows-latest / Python 3.12:
TheTooltipInARealEngine.test_a_field_without_a_unit_gets_nothing_addedraisedsubprocess.TimeoutExpired, node not answering within 30 s on a runner that took 333 s for the whole suite. Re-run, it passed (9/9). The test is mine, from #686: the class started a freshnodeprocess for every render - about ten per run - each with its own 30-second timeout, so every render was another chance to lose to a cold start. The three earlier failed CI runs whose logs mention this file were checked: it did not fail in any of them, so this was the first time.What changed
setUpClassrenders every case the class needs - each size setting in English,MAX_RAR_FOLDER_SIZEin Spanish and French, and one field with no unit - in one node process, with a 120 s timeout (the other real-engine test gives a singlenode --check60 s). The tests read their tooltip from that one run.t,fieldHelpandsettingsHelpHtmllifted out ofapp.js, the same dictionaries, the same assertions. The script is still written to a temp file (three dictionaries inlined is past what a Windows command line carries), and the file is removed in afinally.Verified
app.js(settingsHelpHtml), the two tests guarding it still fail; the no-unit test is the control and passes both ways.🤖 Generated with Claude Code
https://claude.ai/code/session_01AP6LSxkr4n9dMFNSNMogmW