Skip to content

Commit 9ef8796

Browse files
committed
chore: test template now skips both
1 parent c1e3432 commit 9ef8796

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

2024/python/src/grice_py_aoc_2024/templates/test_day.py-tpl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ EXPECTED_PART_1 = 123 # TODO replace!
1212
EXPECTED_PART_2 = 456 # TODO replace!
1313

1414

15+
@pytest.mark.skip(reason=f"{DIR.stem} P1 incomplete")
1516
def test_part1():
1617
contents = TEST_FILE.read_text()
1718
result = part1(contents=contents)
1819
assert result == EXPECTED_PART_1
1920

2021

21-
@pytest.mark.xfail(reason=f"{DIR.stem} P1 incomplete")
22+
@pytest.mark.skip(reason=f"{DIR.stem} P2 incomplete")
2223
def test_part2():
2324
contents = TEST_FILE.read_text()
2425
result = part2(contents=contents)

0 commit comments

Comments
 (0)