Tiny Fix: Handle the non-tty case for sysconf#1356
Open
jeff-hykin wants to merge 2 commits intodevfrom
Open
Conversation
Contributor
Greptile SummaryAdds
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: e0d2258 |
paul-nechifor
previously approved these changes
Feb 24, 2026
Comment on lines
191
to
+198
| def test_handles_eof_error_on_input(self) -> None: | ||
| with patch.dict(os.environ, {"CI": ""}, clear=False): | ||
| mock_check = MockConfigurator(passes=False) | ||
| with patch("builtins.input", side_effect=EOFError): | ||
| configure_system([mock_check]) | ||
| assert not mock_check.fix_called | ||
| with patch("sys.stdin") as mock_stdin: | ||
| mock_stdin.isatty.return_value = True | ||
| with patch("builtins.input", side_effect=EOFError): | ||
| configure_system([mock_check]) | ||
| assert not mock_check.fix_called |
Contributor
There was a problem hiding this comment.
You can use the mocker fixture to not need to indent so much. It automatically cleans up when it's done.
Suggested change
| def test_handles_eof_error_on_input(self) -> None: | |
| with patch.dict(os.environ, {"CI": ""}, clear=False): | |
| mock_check = MockConfigurator(passes=False) | |
| with patch("builtins.input", side_effect=EOFError): | |
| configure_system([mock_check]) | |
| assert not mock_check.fix_called | |
| with patch("sys.stdin") as mock_stdin: | |
| mock_stdin.isatty.return_value = True | |
| with patch("builtins.input", side_effect=EOFError): | |
| configure_system([mock_check]) | |
| assert not mock_check.fix_called | |
| def test_handles_eof_error_on_input(self, mocker) -> None: | |
| mocker.patch.dict(os.environ, {"CI": ""}, clear=False) | |
| mock_check = MockConfigurator(passes=False) | |
| mock_stdin = mocker.patch("sys.stdin") | |
| mock_stdin.isatty.return_value = True | |
| mocker.patch("builtins.input", side_effect=EOFError) | |
| configure_system([mock_check]) | |
| assert not mock_check.fix_called |
Also, all of them use mocker.patch.dict(os.environ, {"CI": ""}, clear=False) so you can put that in a common mock so you don't have to add it in each test.
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.
Problem
Can break inside docker and other automated envs
Solution
5 line change to check if stdin is tty
Breaking Changes
None
How to Test
Reboot or change multicast, then run any dimos blueprint with lcm
Contributor License Agreement