Skip to content

Commit

Permalink
Sanity check github actions failing test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchrisadams committed May 15, 2024
1 parent 863a9d0 commit 682b0e4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions greenweb/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@
SECRET_KEY=(str, "some-key"),
DJANGO_LOG_LEVEL=(str, "INFO"),
# databases
DATABASE_URL=(str, "mysql://localhost:3306/greencheck"),
DATABASE_URL_READ_ONLY=(str, "mysql://localhost:3306/greencheck"),
# TODO: this is only added to debug a github action issue with failing tests
DATABASE_URL=(
str,
"mysql://root:just-for-github-actions@127.0.0.1:3306/greencheck",
),
DATABASE_URL_READ_ONLY=(
str,
"mysql://root:just-for-github-actions@127.0.0.1:3306/greencheck",
),
EXPLORER_TOKEN=(str, "some-token"),
# object storage
OBJECT_STORAGE_ENDPOINT=(str, "https://s3.nl-ams.scw.cloud"),
Expand Down

0 comments on commit 682b0e4

Please sign in to comment.