Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 1m1s
ev/deliver-messages bridges SX notification messages to the Scheme notify flow: each (id recipient body) is serialized to s-expr text, spliced as quoted data into the digest-flow program, delivered over an injected transport, and results unboxed. Integration suite drives all three derivations (reminders / booking-notify / reschedule) through delivery end to end; empty batch guarded (empty digest completes without suspending). 303/303 green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
# events-on-sx conformance config — sourced by lib/guest/conformance.sh.
|
|
|
|
LANG_NAME=events
|
|
MODE=dict
|
|
SCOREBOARD_DIR=lib/events
|
|
|
|
PRELOADS=(
|
|
spec/stdlib.sx
|
|
lib/r7rs.sx
|
|
lib/datalog/tokenizer.sx
|
|
lib/datalog/parser.sx
|
|
lib/datalog/unify.sx
|
|
lib/datalog/db.sx
|
|
lib/datalog/builtins.sx
|
|
lib/datalog/aggregates.sx
|
|
lib/datalog/strata.sx
|
|
lib/datalog/eval.sx
|
|
lib/datalog/api.sx
|
|
lib/datalog/magic.sx
|
|
lib/events/calendar.sx
|
|
lib/events/timezone.sx
|
|
lib/events/availability.sx
|
|
lib/persist/event.sx
|
|
lib/persist/backend.sx
|
|
lib/persist/log.sx
|
|
lib/persist/kv.sx
|
|
lib/persist/concurrency.sx
|
|
lib/persist/api.sx
|
|
lib/events/booking.sx
|
|
lib/events/booking-notify.sx
|
|
lib/events/ticket.sx
|
|
lib/guest/lex.sx
|
|
lib/guest/reflective/env.sx
|
|
lib/guest/reflective/quoting.sx
|
|
lib/scheme/parser.sx
|
|
lib/scheme/eval.sx
|
|
lib/scheme/runtime.sx
|
|
lib/flow/spec.sx
|
|
lib/flow/store.sx
|
|
lib/flow/remote.sx
|
|
lib/flow/host.sx
|
|
lib/flow/api.sx
|
|
lib/events/notify.sx
|
|
lib/events/api.sx
|
|
lib/events/reminders.sx
|
|
lib/events/federation.sx
|
|
)
|
|
|
|
SUITES=(
|
|
"calendar:lib/events/tests/calendar.sx:(ev-calendar-tests-run!)"
|
|
"timezone:lib/events/tests/timezone.sx:(ev-timezone-tests-run!)"
|
|
"availability:lib/events/tests/availability.sx:(ev-availability-tests-run!)"
|
|
"api:lib/events/tests/api.sx:(ev-api-tests-run!)"
|
|
"booking:lib/events/tests/booking.sx:(ev-booking-tests-run!)"
|
|
"booking-notify:lib/events/tests/booking-notify.sx:(ev-booking-notify-tests-run!)"
|
|
"ticket:lib/events/tests/ticket.sx:(ev-ticket-tests-run!)"
|
|
"notify:lib/events/tests/notify.sx:(ev-notify-tests-run!)"
|
|
"reminders:lib/events/tests/reminders.sx:(ev-reminders-tests-run!)"
|
|
"federation:lib/events/tests/federation.sx:(ev-federation-tests-run!)"
|
|
"integration:lib/events/tests/integration.sx:(ev-integration-tests-run!)"
|
|
)
|