Merge pull request #44 from velocitatem/agent-behavior-loader-developemen

Agent behavior loader developement + rl loop definition and e2e tests.
This commit is contained in:
Daniel Alves Rösel
2026-01-31 10:21:54 +01:00
committed by GitHub
71 changed files with 5073 additions and 751 deletions

View File

@@ -49,8 +49,10 @@ test.backend: $(VENV)
test.e2e:
@cd tests/e2e && npm install
@cd tests/e2e && npx playwright install chromium
@test -f tests/e2e/.env || cp tests/e2e/.env.example tests/e2e/.env
@timeout 30 bash -c 'until curl -sf http://localhost:5000/health > /dev/null 2>&1; do sleep 1; done' || (echo "Backend not ready" && exit 1)
@timeout 30 bash -c 'until curl -sf http://localhost:3000 > /dev/null 2>&1; do sleep 1; done' || (echo "Web app not ready" && exit 1)
@timeout 30 bash -c 'until curl -sf http://localhost:8085/health > /dev/null 2>&1; do sleep 1; done' || (echo "Airflow not ready" && exit 1)
@cd tests/e2e && npm test
.PHONY: test.all