Skip to content

Commit fdb96bf

Browse files
committed
Add macOS support
1 parent be520c8 commit fdb96bf

File tree

2 files changed

+244
-240
lines changed

2 files changed

+244
-240
lines changed

Lib/test/test_external_inspection.py

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ def _make_test_script(script_dir, script_basename, source):
2323

2424
class TestGetStackTrace(unittest.TestCase):
2525

26+
@unittest.skipIf(sys.platform != "darwin" and sys.platform != "linux", "Test only runs on Linux and MacOS")
2627
@unittest.skipIf(sys.platform == "linux" and not PROCESS_VM_READV_SUPPORTED, "Test only runs on Linux with process_vm_readv support")
2728
def test_stack_trace(self):
2829
# Spawn a process with some realistic Python code

0 commit comments

Comments
 (0)