Skip to content

Commit

Permalink
Update to port 3307 for GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianswms committed Aug 2, 2023
1 parent 54ce785 commit a0c70aa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: melty
ports:
- 3306:3306
- 3307:3306
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@

SAMPLE_CONFIG = {
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(),
"sqlalchemy_url": "mysql+pymysql://root:password@localhost:3306/melty",
"sqlalchemy_url": "mysql+pymysql://root:password@localhost:3307/melty",
}

NO_SQLALCHEMY_CONFIG = {
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(),
"host": "localhost",
"port": 3306,
"port": 3307,
"user": "root",
"password": "password",
"database": "melty",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_replication_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
TABLE_NAME = "test_replication_key"
SAMPLE_CONFIG = {
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(),
"sqlalchemy_url": "mysql+pymysql://root:password@localhost:3306/melty",
"sqlalchemy_url": "mysql+pymysql://root:password@localhost:3307/melty",
}


Expand Down
2 changes: 1 addition & 1 deletion tests/test_selected_columns_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

TABLE_NAME_SELECTED_COLUMNS_ONLY = "test_selected_columns_only"
SAMPLE_CONFIG = {
"sqlalchemy_url": "mysql+pymysql://root:password@localhost:3306/melty",
"sqlalchemy_url": "mysql+pymysql://root:password@localhost:3307/melty",
}


Expand Down

0 comments on commit a0c70aa

Please sign in to comment.