From e7730931cb73f31f8cc759b86cc12e64afc41402 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 1 May 2023 15:40:56 +1000 Subject: [PATCH] Ignore pdf generation when using github actions --- tests/Pdf/PdfServiceTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/Pdf/PdfServiceTest.php b/tests/Pdf/PdfServiceTest.php index 4bba1ff7b01d..625783cef598 100644 --- a/tests/Pdf/PdfServiceTest.php +++ b/tests/Pdf/PdfServiceTest.php @@ -36,6 +36,9 @@ class PdfServiceTest extends TestCase public function testPdfGeneration() { + if(config('ninja.testvars.travis')) + $this->markTestSkipped(); + $invitation = $this->invoice->invitations->first(); $service = (new PdfService($invitation))->boot();