We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc549bb commit 8e8d694Copy full SHA for 8e8d694
.github/workflows/ci.yml
@@ -65,6 +65,11 @@ jobs:
65
DB_PORT: 3306
66
run: bin/cake migrations migrate -c test
67
68
+ - name: Debug MySQL
69
+ run: |
70
+ mysql -h 127.0.0.1 -uroot -proot -e "SHOW DATABASES;"
71
+ mysql -h 127.0.0.1 -uroot -proot -e "USE game_on_test; SHOW TABLES;"
72
+
73
- name: Run unit tests
74
working-directory: app
75
env:
app/tests/bootstrap.php
@@ -34,6 +34,8 @@
34
Configure::write('App.fullBaseUrl', 'http://localhost');
35
}
36
37
+Configure::write('debug', true);
38
39
// Fixate now to avoid one-second-leap-issues
40
Chronos::setTestNow(Chronos::now());
41
0 commit comments