Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2025 Perry Goy
Copyright (c) 2019-2026 Perry Goy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1,670 changes: 959 additions & 711 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion screenpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
ScreenPy is a composition-based test framework. It is inspired by the
SerenityBDD library for Java.

:copyright: (c) 2019-2025 by Perry Goy.
:copyright: (c) 2019-2026 by Perry Goy.
:license: MIT, see LICENSE for more details.
"""

Expand Down
2 changes: 1 addition & 1 deletion screenpy/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
__author__ = metadata["Author"]
__author_email__ = metadata["Author-email"]
__license__ = metadata["License"]
__copyright__ = f"2019-2025 {__author__}"
__copyright__ = f"2019-2026 {__author__}"
8 changes: 4 additions & 4 deletions tests/test_custom_matchers.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,22 +98,22 @@ def test_str_separator(self) -> None:

def test_bad_params(self) -> None:
with pytest.raises(
ValueError, match="bounding string did not match correct pattern."
ValueError, match=r"bounding string did not match correct pattern."
):
is_in_bounds("(1.1.1.1, 4.0]")

with pytest.raises(
ValueError, match="bounding string did not match correct pattern."
ValueError, match=r"bounding string did not match correct pattern."
):
is_in_bounds("(1.1, 4.4.4.4]")

with pytest.raises(
ValueError, match="bounding string did not match correct pattern"
ValueError, match=r"bounding string did not match correct pattern"
):
is_in_bounds("(ab.cd, 1]")

with pytest.raises(
TypeError, match="is_in_bounds takes either a range string or two numbers."
TypeError, match=r"is_in_bounds takes either a range string or two numbers."
):
is_in_bounds(1, 2, 3)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_resolutions.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ def test_bad_params(self) -> None:
IsInRange(1, 2, 3)

with pytest.raises(
ValueError, match="bounding string did not match correct pattern."
ValueError, match=r"bounding string did not match correct pattern."
):
IsInRange(5).resolve()

Expand Down