lab1: add CI/CD testing
All checks were successful
Test Agent / test-agent-run (push) Successful in 5m24s

This commit is contained in:
2026-02-23 23:53:42 +02:00
parent b2c7427af0
commit b330180909
6 changed files with 75 additions and 3 deletions

View File

@@ -16,3 +16,6 @@ MQTT_TOPIC = os.environ.get("MQTT_TOPIC") or "agent"
# Delay for sending data to mqtt in seconds
DELAY = try_parse(float, os.environ.get("DELAY")) or 1
# Testing switches for CI/CD
MAX_SENDS = try_parse(int, os.environ.get("MAX_SENDS"))