Skip to content

Commit

Permalink
Debugging GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianswms committed Aug 16, 2023
1 parent f8c3be6 commit 03219cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: melty
ports:
- 3307:3306
- 3306:3306
mysqldb_ssh:
image: mysql
restart: always
Expand Down
6 changes: 3 additions & 3 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": f"mysql+mysqldb://root:password@localhost:3307/melty",
"sqlalchemy_url": f"mysql+mysqldb://root:password@127.0.0.1:3306/melty",
}

NO_SQLALCHEMY_CONFIG = {
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(),
"host": "localhost",
"port": 3307,
"host": "127.0.0.1",
"port": 3306,
"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": f"mysql+mysqldb://root:password@localhost:3307/melty",
"sqlalchemy_url": f"mysql+mysqldb://root:password@127.0.0.1:3306/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": f"mysql+mysqldb://root:password@localhost:3307/melty",
"sqlalchemy_url": f"mysql+mysqldb://root:password@127.0.0.1:3306/melty",
}


Expand Down

0 comments on commit 03219cd

Please sign in to comment.