You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lets users override the prompt timeout for a single run without editing the project's JSON config.
Changed
commands/run_tests.py: new --prompt-timeout SECONDS option; merges {"th_config": {"prompt_timeout_seconds": N}} into the execution config via the existing merge_configs(). Execution-only, not persisted; wins over any value from --config.
Test plan
New tests in test_run_tests.py: flag merges into execution config standalone, and takes precedence when combined with --config.
New test_utils.py case illustrating a th_config merge.
Please run pytest tests/test_run_tests.py tests/test_utils.py before merging.
Auto reviews are disabled on base/target branches other than the default branch.
Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: f2febc1f-dead-4644-ac3c-6958752efd04
You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.
Use the checkbox below for a quick retry:
🔍 Trigger review
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.
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
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.
Fix: project-chip/certification-tool#1038
Related to: project-chip/certification-tool-backend#356
Description
Lets users override the prompt timeout for a single run without editing the project's JSON config.
Changed
Test plan