fix(tests): Fix test selection and run unit tests of DAV and user_status

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/48215/head
Joas Schilling 7 months ago
parent 96de697aa6
commit 6ad620fe27
No known key found for this signature in database
GPG Key ID: F72FA5B49FFA96B0
  1. 8
      apps/user_status/tests/Integration/Service/StatusServiceIntegrationTest.php
  2. 6
      tests/apps.php

@ -7,7 +7,7 @@ declare(strict_types=1);
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserStatus\Tests\Integration\BackgroundJob;
namespace OCA\UserStatus\Tests\Integration\Service;
use OCA\UserStatus\Service\StatusService;
use OCP\AppFramework\Db\DoesNotExistException;
@ -176,10 +176,4 @@ class StatusServiceIntegrationTest extends TestCase {
$this->service->findByUserId('test123')->getMessageId(),
);
}
public function testCi(): void {
// TODO: remove if CI turns red
self::assertTrue(false);
}
}

@ -6,11 +6,7 @@
*/
function loadDirectory($path): void {
if (strpos($path, 'integration')) {
return;
}
if (strpos($path, 'Integration')) {
if (strpos($path, 'apps/user_ldap/tests/Integration')) {
return;
}

Loading…
Cancel
Save