Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Remove a test that's flaky under textual
Everything this test exercises is also exercised by the `test_live_tracking_server_exits_properly_on_sigint` test that still remains in the `TestLiveRemoteSubcommand` class (same test name, different test class). That test uses `_wait_until_process_blocks` to ensure that the SIGINT is sent at a known point in the process's execution, but this one can't. With this test, the SIGINT is sometimes delivered while the TUI is still starting up, and at that point, the signal can result in exceptions (teardown of the TUI tries to access attributes that weren't created because startup was interrupted). So, remove this test and rely on the remaining one for coverage of how SIGINT behaves when interrupting our TUI. Signed-off-by: Matt Wozniski <[email protected]>
- Loading branch information