We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ada8e2 commit f5656f4Copy full SHA for f5656f4
mypy/test/teststubgen.py
@@ -31,6 +31,7 @@
31
class StubgenCmdLineSuite(unittest.TestCase):
32
"""Test cases for processing command-line options and finding files."""
33
34
+ @unittest.skipIf(sys.platform == 'win32', "clean up fails on Windows")
35
def test_files_found(self) -> None:
36
current = os.getcwd()
37
with tempfile.TemporaryDirectory() as tmp:
@@ -51,6 +52,7 @@ def test_files_found(self) -> None:
51
52
finally:
53
os.chdir(current)
54
55
56
def test_packages_found(self) -> None:
57
58
0 commit comments