Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Nov 25, 2025
commit 8e17a5d702dbf427255fd467d4e14a854d7a91b3
3 changes: 0 additions & 3 deletions tests/Feature/RedisPayloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,6 @@ public function test_tags_are_correctly_determined_for_listeners()
$this->assertEquals([FakeModel::class.':42'], $JobPayload->decoded['tags']);
}

/**
* @requires PHP 7.4
*/
public function test_tags_are_correctly_determined_for_listeners_with_property_types()
{
$JobPayload = new JobPayload(json_encode(['id' => 1]));
Expand Down
3 changes: 3 additions & 0 deletions tests/Feature/SupervisorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
use Laravel\Horizon\Tests\IntegrationTest;
use Laravel\Horizon\WorkerCommandString;
use Mockery;
use PHPUnit\Framework\Attributes\RequiresPhpExtension;

class SupervisorTest extends IntegrationTest
{
Expand Down Expand Up @@ -50,6 +51,7 @@ protected function tearDown(): void
}

/** @requires extension redis */
#[RequiresPhpExtension('redis')]
public function test_supervisor_can_start_worker_process_with_given_options()
{
Queue::push(new Jobs\BasicJob);
Expand Down Expand Up @@ -262,6 +264,7 @@ public function test_supervisor_can_restart_processes()
}

/** @requires extension redis */
#[RequiresPhpExtension('redis')]
public function test_processes_can_be_paused_and_continued()
{
$options = $this->supervisorOptions();
Expand Down
Loading