feat(workflows): make shell step timeout configurable (#3327)#3328
Merged
Conversation
The `shell` step hardcoded a 300s subprocess timeout, so any command that legitimately runs longer than five minutes (a full build, a linter aggregator, an integration-test target) was killed with TimeoutExpired and failed the whole run, with no YAML knob to raise the limit. Add an optional `timeout` field (seconds) that defaults to 300 for backward compatibility and is threaded through to `subprocess.run`. The timeout failure message now reports the configured value instead of a hardcoded 300. `validate` rejects a `timeout` that is not a positive number (bool is rejected explicitly, since it is an int subclass but a config error rather than a duration). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 task
Contributor
There was a problem hiding this comment.
Pull request overview
This PR makes the workflow shell step’s subprocess timeout configurable per-step (defaulting to the historical 300s), so longer-running QA/build commands can run without being killed by a hardcoded limit.
Changes:
- Add optional
timeout(seconds) toshellstep execution, defaulting to 300. - Update the timeout failure message to report the configured timeout.
- Add/extend
ShellStepvalidation and unit tests to cover timeout behavior and invalid values.
Show a summary per file
| File | Description |
|---|---|
| src/specify_cli/workflows/steps/shell/init.py | Threads timeout from config into subprocess.run, updates timeout error message, and validates timeout input. |
| tests/test_workflows.py | Adds TestShellStep coverage for default/configured timeout wiring, error messaging, and validation cases. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 2
- Review effort level: Low
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
The isfinite guard added in 955d46a rejects YAML .inf/.nan timeouts, but no test asserted it. inf and nan are floats that pass a plain > 0 check (nan <= 0 is False), so without an explicit case a regression could silently reaccept them and crash subprocess.run(timeout=...) at runtime. Addresses the remaining Copilot review comment on PR github#3328. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
mdnyeemakhtar
approved these changes
Jul 7, 2026
mnriem
requested changes
Jul 8, 2026
mnriem
left a comment
Collaborator
There was a problem hiding this comment.
Please address Copilot feedback. Also please do not resolve conversations
Address Copilot review feedback on github#3328: the per-step `timeout` option was not reflected in the public workflow docs. The Shell Steps section only showed `run:`, so readers couldn't discover `timeout:`, its unit (seconds), or its default (300). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
…eout # Conflicts: # src/specify_cli/workflows/steps/shell/__init__.py
Collaborator
|
Please address Copilot feedback |
…ne path Address Copilot review feedback on github#3328: - Remove the dead "fall back to default" timeout block in execute(): it re-read `timeout` from config immediately after, so the fallback was discarded and its comment contradicted the new fail-on-invalid behavior. - Extract a single `_timeout_error()` helper shared by execute() and validate() so both reject the same values with the same message, instead of two drifting copies of the check. - Hoist the duplicated inline `import math` to module scope. - Add test_execute_fails_cleanly_on_invalid_timeout: asserts execute() fails the step (rather than raising) on an unvalidated string/bool/inf/0 timeout, covering the engine-skips-validate path Copilot flagged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
mnriem
approved these changes
Jul 13, 2026
Collaborator
|
Thank you! |
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
Closes #3327. The workflow
shellstep hardcoded a 300-second subprocess timeout with no way to override it, so any command that legitimately runs longer than five minutes — a full build, a MegaLinter/golangci-lint aggregator, an integration-test target — was killed withTimeoutExpiredand failed the entire run. There was no YAML knob to raise the limit, which madeshellsteps unusable as a probe/gate over real project QA commands.Changes
timeoutfield (seconds) to the shell step, read viaconfig.get("timeout", 300)and threaded intosubprocess.run. Defaults to 300 so existing workflows are unaffected.validaterejects atimeoutthat is not a positive number.boolis rejected explicitly — it is anintsubclass, buttimeout: trueis a config error, not a duration.Acceptance criteria (from the issue)
timeout:value overrides the 300s default and is honored bysubprocess.run.timeout:preserves current behavior (300s).validaterejects a non-positive or non-numerictimeout.Testing
Seven new tests under
TestShellStep:timeoutis passed tosubprocess.runvalidaterejects non-positive (0,-30) and non-numeric ("30",True) valuesvalidateaccepts positiveint/floatpytest tests/test_workflows.py::TestShellStep→ 13 passed. Confirmed the behavior-changing tests fail without the source change (test-the-test viagit stash).🤖 Generated with Claude Code