Skip to content

Commit eb616ce

Browse files
committed
One more try with root user
1 parent d1b53a6 commit eb616ce

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@ jobs:
163163
--name MySQLTestDatabase \
164164
-e MYSQL_ROOT_PASSWORD=mypassword \
165165
-e MYSQL_DATABASE=mydatabase \
166-
-e MYSQL_USER=myuser \
167-
-e MYSQL_PASSWORD=mypassword \
168166
-p 3306:3306 \
169167
-d mysql:${{ matrix.mysql-version }} \
170168
--log-bin=/var/lib/mysql/mysql-bin.log

modules/module-mysql/test/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { utils } from '@powersync/lib-services-framework';
22

33
export const env = utils.collectEnvironmentVariables({
4-
MYSQL_TEST_URI: utils.type.string.default('mysql://myuser:mypassword@localhost:3306/mydatabase'),
4+
MYSQL_TEST_URI: utils.type.string.default('mysql://root:mypassword@localhost:3306/mydatabase'),
55
CI: utils.type.boolean.default('false'),
66
SLOW_TESTS: utils.type.boolean.default('false')
77
});

0 commit comments

Comments
 (0)