From baf2236afda4408369c9a50e8859ed7a29e1bb06 Mon Sep 17 00:00:00 2001 From: Kieran Brahney Date: Wed, 23 Oct 2024 16:37:39 +0100 Subject: [PATCH] skip test on redis/beanstalkd --- tests/Integration/Queue/WorkCommandTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Integration/Queue/WorkCommandTest.php b/tests/Integration/Queue/WorkCommandTest.php index 43296141df1..ef5cc7b46d8 100644 --- a/tests/Integration/Queue/WorkCommandTest.php +++ b/tests/Integration/Queue/WorkCommandTest.php @@ -164,6 +164,8 @@ public function testMaxTimeExceeded() public function testFailedJobListenerOnlyRunsOnce() { + $this->markTestSkippedWhenUsingQueueDrivers(['redis', 'beanstalkd']); + Exceptions::fake(); Queue::push(new FirstJob);