Skip to content

Commit 9fb0966

Browse files
committed
test/cli/inline-suppress_test.py: skip tests of (currently) undefined behavior
1 parent f46c06e commit 9fb0966

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/cli/inline-suppress_test.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -324,12 +324,12 @@ def __test_duplicate_cmd(tmpdir, extra_args):
324324
assert ret == 0, stdout
325325

326326

327-
@pytest.mark.xfail(strict=True) # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
327+
@pytest.mark.skip # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
328328
def test_duplicate_cmd(tmp_path):
329329
__test_duplicate_cmd(tmp_path, ['-j1'])
330330

331331

332-
@pytest.mark.xfail(strict=True) # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
332+
@pytest.mark.skip # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
333333
def test_duplicate_cmd_j(tmp_path):
334334
__test_duplicate_cmd(tmp_path, ['-j2'])
335335

@@ -361,12 +361,12 @@ def __test_duplicate_file(tmp_path, extra_args):
361361
assert ret == 0, stdout
362362

363363

364-
@pytest.mark.xfail(strict=True) # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
364+
@pytest.mark.skip # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
365365
def test_duplicate_file(tmpdir):
366366
__test_duplicate_file(tmpdir, ['-j1'])
367367

368368

369-
@pytest.mark.xfail(strict=True) # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
369+
@pytest.mark.skip # TODO: behavior of duplicate suppressions across inline and non-inline is currently undefined
370370
def test_duplicate_file_j(tmpdir):
371371
__test_duplicate_file(tmpdir, ['-j2'])
372372

0 commit comments

Comments
 (0)