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
6 changes: 6 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,19 @@ jobs:
- distro: debian
version: '11'
name: Debian 11
- distro: debian
version: '12'
name: Debian 12
- distro: debian
version: '13'
name: Debian 13
# Ubuntu 22.04 skipped: system pip 22.0.2 has a regression with
# pyproject.toml dynamic version metadata, building UNKNOWN-0.0.0.
# Upgrading pip fixes it, but that no longer tests the real system.
# Ubuntu 22.04 is covered by the test-deb job instead.
- distro: ubuntu
version: '24.04'
name: Ubuntu 24.04
- distro: ubuntu
version: '26.04'
name: Ubuntu 26.04
Expand Down
2 changes: 1 addition & 1 deletion src/eneru/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# Version is set at build time via git describe --tags
# Format: "4.3.0" for tagged releases, "4.3.0-5-gabcdef1" for dev builds
__version__ = "5.0.0-rc4"
__version__ = "5.1.0-rc0"
3 changes: 1 addition & 2 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,7 @@ def test_append_avatar_to_discord(self):
avatar = "https://example.com/avatar.png"
result = ConfigLoader._append_avatar_to_url(TEST_DISCORD_APPRISE_URL, avatar)

assert "avatar_url=" in result
assert "example.com" in result
assert "avatar_url=https%3A%2F%2Fexample.com%2Favatar.png" in result

@pytest.mark.unit
def test_append_avatar_to_slack(self):
Expand Down
Loading