From c93ef3080188e8ae4e3112d39e99bc91c3346d70 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 8 May 2025 15:43:40 +0100 Subject: [PATCH] Ignore flaky test Signed-off-by: snipe --- tests/Feature/Authentication/LoginTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Feature/Authentication/LoginTest.php b/tests/Feature/Authentication/LoginTest.php index 2f688a59d8..fd0930a3e5 100644 --- a/tests/Feature/Authentication/LoginTest.php +++ b/tests/Feature/Authentication/LoginTest.php @@ -62,6 +62,7 @@ class LoginTest extends TestCase public function testLogsSuccessfulLogin() { + $this->markTestIncomplete("This test is flaky and needs to be fixed. Passes and fails seemingly at random."); User::factory()->create(['username' => 'username_here']); $this->withServerVariables(['REMOTE_ADDR' => '127.0.0.100'])