See the best posts from any Bluesky account
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Isolate test databases from dev to prevent migration reverts dropping tables

Point tests at a dedicated SQLite file (tmp/test.sqlite3) and a
separate ClickHouse database (favs_test) so the test runner's
migrate/revert cycle never touches the dev database.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6 -1
+6 -1
.env.test
··· 1 1 SESSION_DRIVER=memory 2 2 QUEUE_DRIVER=sync 3 3 4 - # ClickHouse (matches docker-compose dev defaults) 4 + # Use a separate SQLite file so tests never touch the dev database. 5 + SQLITE_PATH=tmp/test.sqlite3 6 + 7 + # ClickHouse — unit tests create ephemeral databases per test group. 8 + # This DB is used by the app provider if any functional test hits ClickHouse. 5 9 CLICKHOUSE_URL=http://localhost:8123 10 + CLICKHOUSE_DB=favs_test 6 11 CLICKHOUSE_USER=favs 7 12 CLICKHOUSE_PASSWORD=