Skip to content

Commit

Permalink
XFAILing as intended
Browse files Browse the repository at this point in the history
  • Loading branch information
snake-biscuits committed Jul 21, 2023
1 parent 2c2a26b commit 4efb5d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_save.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,31 +114,31 @@ def save_and_diff_backup(BspClass: object, branch_script: ModuleType, map_path:
def test_D3DBsp_modern_warfare(map_path: str):
# TODO: diff.HeadersDiff isn't ready for modern_warfare
# bsp_diff = save_and_diff_backup(D3DBsp, modern_warfare, map_path)
assert False
raise NotImplementedError()
...


@pytest.mark.xfail(raises=NotImplementedError, reason="not implemented yet")
@map_dirs_to_test("Quake 2")
def test_IdTechBsp_quake2(map_path: str):
# bsp_diff = save_and_diff_backup(IdTechBsp, quake2, map_path)
assert False
raise NotImplementedError()
...


@pytest.mark.xfail(raises=NotImplementedError, reason="not implemented yet")
@map_dirs_to_test("Quake 3 Arena")
def test_IdTechBsp_quake3(map_path: str):
# bsp_diff = save_and_diff_backup(IdTechBsp, quake3, map_path)
assert False
raise NotImplementedError()
...


@pytest.mark.xfail(raises=NotImplementedError, reason="not implemented yet")
@map_dirs_to_test("ReMakeQuake")
def test_ReMakeQuakeBsp_remake_quake(map_path: str):
# bsp_diff = save_and_diff_backup(ReMakeQuakeBsp, remake_quake, map_path)
assert False
raise NotImplementedError()
...


Expand All @@ -159,7 +159,7 @@ def test_RespawnBsp_titanfall2(map_path: str):
@map_dirs_to_test("Quake")
def test_QuakeBsp_quake(map_path: str):
# bsp_diff = save_and_diff_backup(QuakeBsp, quake, map_path)
assert False
raise NotImplementedError()
...


Expand Down

0 comments on commit 4efb5d7

Please sign in to comment.