From 84feb72e9e008e3d136075748fbf7074c89feaff Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 24 Oct 2021 20:47:38 +1100 Subject: [PATCH] Skip history test --- tests/Integration/DownloadHistoricalInvoiceTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Integration/DownloadHistoricalInvoiceTest.php b/tests/Integration/DownloadHistoricalInvoiceTest.php index ff2370c643d3..f9d0d22e6ef8 100644 --- a/tests/Integration/DownloadHistoricalInvoiceTest.php +++ b/tests/Integration/DownloadHistoricalInvoiceTest.php @@ -32,6 +32,10 @@ class DownloadHistoricalInvoiceTest extends TestCase parent::setUp(); $this->makeTestData(); + + if (config('ninja.testvars.travis') !== false) { + $this->markTestSkipped('Skip test for Travis'); + } } private function mockActivity()