We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9302ef3 commit 70dd353Copy full SHA for 70dd353
1 file changed
Lib/test/support/__init__.py
@@ -3083,7 +3083,7 @@ def _supports_remote_attaching():
3083
def support_remote_exec_only(test):
3084
if not sys.is_remote_debug_enabled():
3085
return unittest.skip("Remote debugging is not enabled")(test)
3086
- if sys.platform != "darwin" and sys.platform != "linux" and sys.platform != "win32":
+ if sys.platform not in ("darwin", "linux", "win32"):
3087
return unittest.skip("Test only runs on Linux, Windows and macOS")(test)
3088
if sys.platform == "linux" and not _supports_remote_attaching():
3089
return unittest.skip("Test only runs on Linux with process_vm_readv support")(test)
0 commit comments