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 50288aa commit 84f7afeCopy full SHA for 84f7afe
1 file changed
Lib/test/test_importlib/fixtures.py
@@ -220,8 +220,6 @@ def setUp(self):
220
self.fixtures.enter_context(tempdir_as_cwd())
221
build_files(self.files)
222
223
- def skip(self, reason):
224
- raise unittest.SkipTest(reason)
225
226
227
def build_files(file_defs, prefix=pathlib.Path()):
@@ -262,6 +260,9 @@ class FileBuilder:
262
260
def unicode_filename(self):
263
261
return FS_NONASCII or self.skip("File system does not support non-ascii.")
264
+ def skip(self, reason):
+ raise unittest.SkipTest(reason)
265
+
266
267
def DALS(str):
268
"Dedent and left-strip"
0 commit comments