diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a013a3df57..fba1881ded 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -184,7 +184,7 @@ jobs: run: echo "SELECT * FROM mysql.slow_log WHERE sql_text LIKE '%oc_mail%' AND sql_text NOT LIKE '%information_schema%'" | mysql -h 127.0.0.1 -u root -pmy-secret-pw - name: Print debug logs if: ${{ always() }} - run: cat nextcloud/data/horde_*.log + run: cat nextcloud/data/mail-*-*-imap.log - name: Report coverage uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 if: ${{ always() && matrix.db == 'mysql' }} diff --git a/tests/Integration/Framework/ImapTestAccount.php b/tests/Integration/Framework/ImapTestAccount.php index c55941ae6a..2017bb465e 100644 --- a/tests/Integration/Framework/ImapTestAccount.php +++ b/tests/Integration/Framework/ImapTestAccount.php @@ -47,6 +47,7 @@ public function createTestAccount(?string $userId = null) { $mailAccount->setOutboundUser('user@domain.tld'); $mailAccount->setOutboundPassword(OC::$server->getCrypto()->encrypt('mypassword')); $mailAccount->setOutboundSslMode('none'); + $mailAccount->setDebug(1); $acc = $accountService->save($mailAccount); /** @var MailboxSync $mbSync */