Merged in feature/track-filesize (pull request #200)

track file sizes for all documents in system

* feature complete

needs dev testing
This commit is contained in:
Jay Brown
2026-01-12 17:46:07 +00:00
parent 4ad8168f35
commit ebf47c6013
37 changed files with 1514 additions and 374 deletions
+16
View File
@@ -43,11 +43,27 @@ tasks:
cmds:
- rm -rf mocks/*
- go tool mockery --log-level=""
cleanup:
desc: "Remove stale test containers from previous runs"
cmds:
- |
echo "Cleaning up stale test containers..."
# Remove specific test containers if they exist (running or stopped)
for container in postgres_test_queryorchestration localstack_test_queryorchestration mockserver_test_queryorchestration; do
if docker ps -a --format '{{.Names}}' | grep -q "^${container}$"; then
echo "Removing container: $container"
docker rm -f "$container" 2>/dev/null || true
fi
done
# Also remove any queryorchestration API/runner containers
docker ps -a --format '{{.Names}}' | grep -E '_test_queryorchestration' | xargs -r docker rm -f 2>/dev/null || true
echo "Cleanup complete"
functional:
vars:
INCREMENTAL: "{{.INCREMENTAL | default \"true\"}}"
cmds:
- mkdir -p {{.OUT_DIR}}
- task: cleanup
- task: wait
- |
# Determine test mode first