[deploy] Fix deploy failing
Some checks failed
build & deploy / test (push) Successful in 1m57s
build & deploy / build-and-deploy (push) Failing after 16s

This commit is contained in:
2026-05-01 16:57:51 -04:00
parent cbdb5c49d0
commit b1d6f4726b
2 changed files with 12 additions and 8 deletions

View File

@ -58,8 +58,10 @@ class TestVersionInfo:
result = version_info(mock_request)
# Should use the value from vrobbler/_commit.py
assert result["git_commit"] == "unknown"
# Should use whatever value is in vrobbler/_commit.py
# Could be "unknown" or an actual commit hash
assert "git_commit" in result
assert result["git_commit"] != ""
def test_uses_commit_from_file_when_module_unavailable(self, mock_request):
"""Test that commit from /var/lib/vrobbler/commit.txt is used"""