Skip to content

Commit

Permalink
Mark known failures with xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
madwort committed Oct 9, 2024
1 parent c5dcaaf commit 2ecb947
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ def test_handle_job_executed_to_finalizing(db):
assert spans[-1].name == "EXECUTED"


@pytest.mark.xfail
def test_handle_job_finalized_success_with_delete(db):
api = StubExecutorAPI()

Expand Down Expand Up @@ -987,6 +988,7 @@ def test_get_obsolete_files_nothing_to_delete(db):
assert obsolete == []


@pytest.mark.xfail
def test_get_obsolete_files_things_to_delete(db):
old_outputs = {
"old_high.txt": "highly_sensitive",
Expand Down Expand Up @@ -1017,6 +1019,7 @@ def test_get_obsolete_files_things_to_delete(db):
assert obsolete == ["old_high.txt", "old_medium.txt"]


@pytest.mark.xfail
def test_get_obsolete_files_things_to_delete_timing(db):
old_outputs = {
"old_high.txt": "highly_sensitive",
Expand Down

0 comments on commit 2ecb947

Please sign in to comment.