From c1f25e7c10c89b8bdd191e855fb57fa9390795e8 Mon Sep 17 00:00:00 2001 From: John Skiles Skinner Date: Mon, 1 Apr 2024 16:53:02 -0700 Subject: [PATCH] Add a note about how to resolve db error Apparently this error is common: ``` FATAL: database "test_notification_api" does not exist ``` In lieu of getting to the bottom of it, add a note about how to fix it --- docs/all.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/all.md b/docs/all.md index 5a87cba95..5d3decefa 100644 --- a/docs/all.md +++ b/docs/all.md @@ -262,6 +262,8 @@ This will run: - isort for import styling - pytest for the test suite +If you see an error about a missing test database, run `createdb test_notification_api`. + On GitHub, in addition to these tests, we run: - bandit for code security - pip-audit for dependency vulnerabilities