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 85595d1 commit ac8809aCopy full SHA for ac8809a
tests/scancode/test_resource.py
@@ -32,6 +32,8 @@
32
from os.path import exists
33
from os.path import join
34
35
+import pytest
36
+
37
from commoncode.fileutils import parent_directory
38
from commoncode.system import py2
39
from commoncode.system import py3
@@ -64,7 +66,10 @@ def test_walk_defaults(self):
64
66
]
65
67
assert expected == [(r.name, r.is_file) for r in results]
68
69
70
+ @pytest.mark.xfail(reason='FIXME: a fie for ticket #1422 is needed')
71
def test_Codebase_with_only_ignores_should_not_faild_to_create(self):
72
+ from commoncode.fileutils import create_dir
73
test_codebase = self.get_temp_dir()
74
create_dir(join(test_codebase, 'sccs', 'a'))
75
create_dir(join(test_codebase, 'rcs', 'b'))
0 commit comments