Files
nuchat/backend/scripts/test.sh
Fergus Molloy 820e693b63
Some checks failed
Backend Actions / build (push) Failing after 2m15s
add basic backend workflow
2025-07-22 00:07:52 +01:00

10 lines
252 B
Bash
Executable File

#!/usr/bin/env bash
# ensure server is not started
curl -s -X POST localhost:7001/admin/shutdown 2>&1 > /dev/null
# start server
cargo run --features shutdown -- --port 7001 2>&1 > logs/nuchat.log &
# run tests
cargo test | tee logs/test-output.log