Skip to content

Commit

Permalink
Add charset to db url
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarson committed Jul 30, 2024
1 parent 78c8e71 commit 5319db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
env:
PYTEST_ADDOPTS: "--maxfail=20" # Stop testing after too many failures.
# Conditionally set the database url based on the backend.
DATABASE_URL: ${{ matrix.backend == 'sqlite' && 'sqlite:///db.sqlite3' || 'mysql://root:[email protected]:3306/mysql' }}
DATABASE_URL: ${{ matrix.backend == 'sqlite' && 'sqlite:///db.sqlite3' || 'mysql://root:[email protected]:3306/mysql?charset=utf8mb4' }}

steps:

Expand Down

0 comments on commit 5319db7

Please sign in to comment.