Skip to content

Commit

Permalink
test/cli/inline-suppress_test.py: skip tests of (currently) undefined…
Browse files Browse the repository at this point in the history
… behavior
  • Loading branch information
firewave committed Jan 27, 2025
1 parent 7655caa commit 487705c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/cli/inline-suppress_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,12 @@ def __test_duplicate_cmd(tmpdir, extra_args):
assert ret == 0, stdout


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


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

Expand Down Expand Up @@ -361,12 +361,12 @@ def __test_duplicate_file(tmp_path, extra_args):
assert ret == 0, stdout


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


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

Expand Down

0 comments on commit 487705c

Please sign in to comment.