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 7e8b534 commit 6766374Copy full SHA for 6766374
tests/bash_tests/test_issue_1996.py
@@ -1,8 +1,13 @@
1
# -*- coding: utf-8 -*-
2
3
+import os
4
import shutil
5
import system_tests
-import os
6
+import unittest
7
+
8
+bSkip=system_tests.BT.verbose_version().get('platform')=='mingw64'
9
+if bSkip:
10
+ raise unittest.SkipTest('*** MinGW build does not support yet paths with special characters ***')
11
12
@system_tests.CopyTmpFiles("$data_path/Stonehenge.heic")
13
class Exiv2FilePathsWithSpecialCharacters(metaclass=system_tests.CaseMeta):
0 commit comments