mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
8 lines
No EOL
279 B
Python
8 lines
No EOL
279 B
Python
from scripts.write_install_stamp import build_stamp
|
|
|
|
|
|
def test_build_stamp_keeps_provenance_separate_from_distribution():
|
|
stamp = build_stamp(commit="a" * 40, source="ci", distribution="docker")
|
|
|
|
assert stamp["source"] == "ci"
|
|
assert stamp["distribution"] == "docker" |