11 lines
344 B
Python
11 lines
344 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_addon_does_not_expose_internal_learning_parameters() -> None:
|
|
config = Path("addon/config.yaml").read_text(encoding="utf-8")
|
|
|
|
assert "\noptions:" not in config
|
|
assert "\nschema:" not in config
|
|
assert "prediction_confidence" not in config
|
|
assert "execution_cooldown_seconds" not in config
|