Mark WilkensXL build versions
Some checks failed
Container Image / build-and-push (push) Has been cancelled

This commit is contained in:
2026-07-15 22:06:24 +02:00
parent caffdaa38c
commit aa1293323e
8 changed files with 107 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
"""Tests for WilkensXL build metadata."""
from src.constants import APP_VERSION, BUILD_FLAVOR, BUILD_VERSION, FULL_VERSION, UPSTREAM_VERSION
def test_custom_build_version_is_distinct_from_upstream_version():
assert APP_VERSION == "1.0.1"
assert UPSTREAM_VERSION == APP_VERSION
assert BUILD_FLAVOR == "wilkensxl"
assert BUILD_VERSION.startswith(f"{APP_VERSION}-wilkensxl.")
assert FULL_VERSION == BUILD_VERSION