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
11 changes: 11 additions & 0 deletions qsl.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[qsl]
repo = "CnEquitySnapshotPipelines"
tier = "pipeline"
ring = 2
allow_legacy = false
enforce_bundle = false
artifact_contract = "docs/artifact_contract.md"
snapshot_contract = "docs/artifact_contract.md"

[qsl.compat]
bundle = "2026.07.0"
21 changes: 21 additions & 0 deletions tests/test_qsl_metadata.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
"""Minimal QSL compat metadata smoke tests."""

from __future__ import annotations

from pathlib import Path
import tomllib


def test_qsl_metadata_has_compat_bundle() -> None:
path = Path(__file__).resolve().parents[1] / "qsl.toml"
with path.open("rb") as f:
data = tomllib.load(f)

qsl = data["qsl"]
assert qsl["tier"] == "pipeline"
assert qsl["ring"] == 2
assert qsl.get("repo") == "CnEquitySnapshotPipelines"
compat = qsl["compat"]
assert compat["bundle"] == "2026.07.0"
assert qsl.get("artifact_contract") == "docs/artifact_contract.md"
assert qsl.get("snapshot_contract") == "docs/artifact_contract.md"
Loading
Loading