mirror of
https://github.com/jcreek/CosmicClash.git
synced 2026-09-10 16:04:04 +00:00
10 lines
406 B
Bash
10 lines
406 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Assignment-specific variant of the real control-plane integration gate.
|
|
# It reuses the isolated PostgreSQL + testkit API fixture, but seeds a
|
|
# player-scoped assignment and drives the authenticated Godot assignment read.
|
|
root_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$root_dir"
|
|
ASSIGNMENT_SMOKE=1 bash scripts/verify_control_plane_integration.sh
|