Skip to content

Commit 1c4f2e4

Browse files
authored
Skip disable debug handle validation test on windows
Differential Revision: D82318580 Pull Request resolved: #14262
1 parent 50ac8ea commit 1c4f2e4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

devtools/inspector/tests/inspector_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import os
1111
import random
1212
import statistics
13+
import sys
1314
import tempfile
1415
import unittest
1516
from contextlib import redirect_stdout
@@ -838,6 +839,7 @@ def _gen_random_runtime_output(
838839
) -> List[Union[None, List[torch.Tensor], bool, float, int, str, torch.Tensor]]:
839840
return [torch.randn(RAW_DATA_SIZE)]
840841

842+
@unittest.skipIf(sys.platform.startswith("win"), "Skipping on Windows")
841843
def test_disable_debug_handle_validation_with_symbolic_shapes(self):
842844
"""
843845
Test that demonstrates the issue with symbolic shape related nodes losing from_node info

0 commit comments

Comments
 (0)