23 lines
683 B
Bash
Executable file
23 lines
683 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
echo "=== Test Data Cleanup ==="
|
|
|
|
# Remove test experiment data
|
|
rm -rf data/experiments/test_* 2>/dev/null || true
|
|
rm -rf data/active/workspaces/test_* 2>/dev/null || true
|
|
|
|
# Clean up benchmark artifacts
|
|
if [ -f ./scripts/maintenance/cleanup-benchmarks.sh ]; then
|
|
./scripts/maintenance/cleanup-benchmarks.sh all 2>/dev/null || true
|
|
fi
|
|
|
|
# Remove temporary test databases
|
|
rm -f /tmp/fetchml_test_*.sqlite 2>/dev/null || true
|
|
rm -f /tmp/fetchml_test_*.db 2>/dev/null || true
|
|
|
|
# Clean Jupyter service test data
|
|
rm -rf /tmp/jupyter-test-* 2>/dev/null || true
|
|
rm -f /tmp/fetch_ml_jupyter_*.json 2>/dev/null || true
|
|
|
|
echo "✓ Test data cleanup complete"
|