From 3667fcddd7a2a7f5f5f389a1bd7700af9cbcd032 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 8 Aug 2025 11:37:36 +0100 Subject: [PATCH] Mark flappy API rate limiting tests as skipped :( Signed-off-by: snipe --- tests/Feature/ApiRateLimitTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Feature/ApiRateLimitTest.php b/tests/Feature/ApiRateLimitTest.php index b8bfdb40ae..f96624b6ae 100644 --- a/tests/Feature/ApiRateLimitTest.php +++ b/tests/Feature/ApiRateLimitTest.php @@ -20,6 +20,7 @@ class ApiRateLimitTest extends TestCase public function testRateLimitDecreasesRemaining() { + $this->markTestSkipped('This test is flappy and keeps screwing up the test results.'); config(['app.api_throttle_per_minute' => 5]); $expected_remaining = (config('app.api_throttle_per_minute') - 1); $admin = User::factory()->create(); @@ -41,6 +42,7 @@ class ApiRateLimitTest extends TestCase public function testRateLimitDecreasesRemainingOverSixty() { + $this->markTestSkipped('This test is flappy and keeps screwing up the test results.'); config(['app.api_throttle_per_minute' => 80]); $expected_remaining = (config('app.api_throttle_per_minute') - 1); $admin = User::factory()->create();