You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(test): only run external migrations when indexer is enabled
MSP nodes have SH_INDEXER_DB_AUTO_MIGRATE enabled by default and handle
their own database migrations internally during startup. External migrations
using the diesel CLI should only run for user nodes with embedded indexer
(which have auto-migrate disabled via SH_INDEXER_DB_AUTO_MIGRATE="false").
This fixes CI test failures where diesel CLI is not installed on the runner,
causing "Error running Diesel CLI" when fullnet tests try to run external
migrations that are redundant (MSPs already migrated themselves).
Before: External migrations ran for fullnet OR indexer
After: External migrations only run for indexer
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
0 commit comments