Skip to content

Commit 6e19914

Browse files
committed
Experiment with pytest-github-actions-annotate-failures package
1 parent 2f2b32a commit 6e19914

File tree

3 files changed

+51
-30
lines changed

3 files changed

+51
-30
lines changed

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ compat = ["six>=1.17.0"]
3636

3737
# Treat the same as NPM's `devDependencies`
3838
[dependency-groups]
39-
test = ["pytest>=9.0.2", "pytest-cov>=7.0.0", "pytest-asyncio>=1.3.0"]
39+
test = [
40+
"pytest>=9.0.2",
41+
"pytest-cov>=7.0.0",
42+
"pytest-asyncio>=1.3.0",
43+
"pytest-github-actions-annotate-failures>=0.3.0",
44+
]
4045
lint = ["basedpyright>=1.37.1", "ruff>=0.14.13", "mbake>=1.4.4"]
4146
release = ["build>=1.4.0", "twine>=6.2.0", "sphinx>=9.1.0", "jinja2>=3.1.6"]
4247
dev = [

tests/unit/modularinput/test_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_xml_of_event_with_minimal_configuration(capsys):
5050
with data_open("data/event_minimal.xml") as data:
5151
expected = ET.parse(data).getroot()
5252

53-
assert xml_compare(expected, constructed)
53+
assert not xml_compare(expected, constructed)
5454

5555

5656
def test_xml_of_event_with_more_configuration(capsys):

uv.lock

Lines changed: 44 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)