[P] Add general smoke test and Store incremental test
Some checks failed
Component testing / Hub testing (push) Successful in 19s
Component testing / Store testing (push) Successful in 21s
Component testing / Integration smoke testing (push) Has been cancelled

This commit is contained in:
2026-03-23 17:03:17 +02:00
parent 60a846d8b8
commit cdc5c7981d
6 changed files with 132 additions and 8 deletions

17
utils/check-up.py Normal file
View File

@@ -0,0 +1,17 @@
import sys
l = [i for i in sys.stdin.read().split("\n") if i]
header, statuses = l[0], l[1:]
status_index = header.find('STATUS')
name_index = header.find('NAMES')
exit_code = 0
for i in statuses:
if not i[status_index:].startswith("Up "):
service_name = i[name_index:]
print(f"Crash detected in {service_name}")
exit_code = 1
sys.exit(1)