Skip to content

Commit 6766374

Browse files
committed
Skip new tests on MinGW platform
1 parent 7e8b534 commit 6766374

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/bash_tests/test_issue_1996.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# -*- coding: utf-8 -*-
22

3+
import os
34
import shutil
45
import system_tests
5-
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 ***')
611

712
@system_tests.CopyTmpFiles("$data_path/Stonehenge.heic")
813
class Exiv2FilePathsWithSpecialCharacters(metaclass=system_tests.CaseMeta):

0 commit comments

Comments
 (0)