mirror of
https://github.com/torlando-tech/pyxis.git
synced 2026-08-21 10:10:53 +00:00
12 lines
359 B
Python
12 lines
359 B
Python
"""Build-contract checks for the portable telemetry production sources."""
|
|
|
|
import json
|
|
from pathlib import Path
|
|
|
|
ROOT = Path(__file__).resolve().parents[2]
|
|
|
|
|
|
def test_tdeck_ui_builds_telemetry_cpp_sources():
|
|
manifest = json.loads((ROOT / "lib" / "tdeck_ui" / "library.json").read_text())
|
|
assert "+<Telemetry/*.cpp>" in manifest["build"]["srcFilter"]
|