We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb0e76 commit 69efb4cCopy full SHA for 69efb4c
.github/workflows/go.yml
@@ -23,3 +23,8 @@ jobs:
23
24
- name: Test
25
run: go test -short -v ./...
26
+
27
+ - name: MySQL Tests
28
+ run: |
29
+ sudo /etc/init.d/mysql start
30
+ go test -v ./...
pkg/backend/mysql/mysql_test.go
@@ -13,7 +13,7 @@ import (
13
)
14
15
const testUser = "root"
16
-const testPassword = "SqlPassw0rd"
+const testPassword = "root"
17
18
// Creating and dropping databases is terribly inefficient, but easiest for complete test isolation. For
19
// the future consider nested transactions, or manually TRUNCATE-ing the tables in-between tests.
0 commit comments