- Updated holdout.config.ts to use HOLDOUT_SCENARIOS_DIR env var - Modified evaluate.sh to clone harb-holdout-scenarios repo at runtime - Deleted scripts/harb-evaluator/scenarios/ directory - Added .holdout-scenarios/ to .gitignore - Holdout scenarios are now cloned into .holdout-scenarios/ during evaluation - This prevents dev-agent from seeing the holdout test set
41 lines
526 B
Text
41 lines
526 B
Text
# Compiler files
|
|
cache/
|
|
out/
|
|
|
|
# Ignores development broadcast logs
|
|
/broadcast
|
|
/broadcast/*/31337/
|
|
/broadcast/**/dry-run/
|
|
|
|
# Dotenv file
|
|
.env
|
|
.secret
|
|
.secret*
|
|
!onchain/.secret.local
|
|
.infura
|
|
.DS_Store
|
|
|
|
**/node_modules/
|
|
|
|
# Ignore vim files:
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
.playwright-mcp/
|
|
ponder-repo
|
|
tmp
|
|
foundry.lock
|
|
services/ponder/.env.local
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
tests/.stack.log
|
|
playwright-report/
|
|
services/ponder/.ponder/
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
logs/
|
|
|
|
# Holdout scenarios (cloned at runtime by evaluate.sh)
|
|
.holdout-scenarios/
|