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
8 changes: 8 additions & 0 deletions qsl.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tier = "core"
ring = 0
allow_legacy = true

[compat]
bundle = "2026.07.0"
requires = [
]
12 changes: 12 additions & 0 deletions tests/test_qsl_compat_metadata.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from pathlib import Path
import tomllib


def test_qsl_compat_metadata_exists_and_bundle() -> None:
qsl_path = Path(__file__).resolve().parents[1] / "qsl.toml"
assert qsl_path.exists(), "qsl.toml missing"
with qsl_path.open("rb") as f:
data = tomllib.load(f)

assert data.get("compat", {}).get("bundle") == "2026.07.0", "compat.bundle mismatch"

Loading