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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user