From 69a429018b5bb88242362bb9490076d7154460a1 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 9 Nov 2022 10:26:16 +1100 Subject: [PATCH] Fixes for inventory management --- tests/Feature/Inventory/InventoryManagementTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Feature/Inventory/InventoryManagementTest.php b/tests/Feature/Inventory/InventoryManagementTest.php index 8b12761a974e..79e847f5cbb9 100644 --- a/tests/Feature/Inventory/InventoryManagementTest.php +++ b/tests/Feature/Inventory/InventoryManagementTest.php @@ -37,6 +37,10 @@ class InventoryManagementTest extends TestCase $this->withoutMiddleware( ThrottleRequests::class ); + + if (config('ninja.testvars.travis') !== false) { + $this->markTestSkipped('Skip test for Travis'); + } } public function testInventoryMovements()