We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1e3432 commit 9ef8796Copy full SHA for 9ef8796
2024/python/src/grice_py_aoc_2024/templates/test_day.py-tpl
@@ -12,13 +12,14 @@ EXPECTED_PART_1 = 123 # TODO replace!
12
EXPECTED_PART_2 = 456 # TODO replace!
13
14
15
+@pytest.mark.skip(reason=f"{DIR.stem} P1 incomplete")
16
def test_part1():
17
contents = TEST_FILE.read_text()
18
result = part1(contents=contents)
19
assert result == EXPECTED_PART_1
20
21
-@pytest.mark.xfail(reason=f"{DIR.stem} P1 incomplete")
22
+@pytest.mark.skip(reason=f"{DIR.stem} P2 incomplete")
23
def test_part2():
24
25
result = part2(contents=contents)
0 commit comments