Skip to content

Commit

Permalink
Update workflow configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ellmetha committed Feb 24, 2020
1 parent 14f07c9 commit ff727b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
MYSQL_ROOT_PASSWORD: ""
MYSQL_DATABASE: machina_test
ports:
- 3306/tcp
- 3307:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
postgres:
image: postgres:10.8
Expand Down
4 changes: 3 additions & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ def __getitem__(self, item):
'ENGINE': 'django.db.backends.mysql',
'NAME': 'machina_test',
'USER': 'root',
'PASSWORD': '',
'PASSWORD': 'root',
'HOST': 'localhost',
'PORT': 3307,
'TEST': {
'CHARSET': 'utf8mb4',
'COLLATION': 'utf8mb4_general_ci',
Expand Down

0 comments on commit ff727b1

Please sign in to comment.