11import uuid
22import time
3+ import pytest
34from datetime import datetime , timedelta
45from typing import Optional
56
@@ -92,6 +93,7 @@ def create_catalog_item_variation() -> str:
9293
9394
9495@retry_on_rate_limit
96+ @pytest .mark .skip (reason = "Temporarily skipping create_initial_adjustment" )
9597def create_initial_adjustment (item_variation_id : str ) -> Optional [str ]:
9698 """
9799 Create an initial inventory adjustment and return the physical count ID
@@ -161,6 +163,7 @@ def create_initial_adjustment(item_variation_id: str) -> Optional[str]:
161163 return physical_change .physical_count .id
162164
163165
166+ @pytest .mark .skip (reason = "Temporarily skipping test_batch_change_inventory" )
164167def test_batch_change_inventory ():
165168 client = helpers .test_client ()
166169 item_variation_id = create_catalog_item_variation ()
@@ -193,6 +196,7 @@ def test_batch_change_inventory():
193196 assert "50" == response .changes [0 ].adjustment .quantity
194197
195198
199+ @pytest .mark .skip (reason = "Temporarily skipping test_batch_retrieve_inventory_changes" )
196200def test_batch_retrieve_inventory_changes ():
197201 client = helpers .test_client ()
198202 item_variation_id = create_catalog_item_variation ()
@@ -207,6 +211,7 @@ def test_batch_retrieve_inventory_changes():
207211 assert len (response .items ) > 0
208212
209213
214+ @pytest .mark .skip (reason = "Temporarily skipping test_batch_retrieve_inventory_counts" )
210215def test_batch_retrieve_inventory_counts ():
211216 client = helpers .test_client ()
212217 item_variation_id = create_catalog_item_variation ()
@@ -219,6 +224,7 @@ def test_batch_retrieve_inventory_counts():
219224 assert len (response .items ) > 0
220225
221226
227+ @pytest .mark .skip (reason = "Temporarily skipping test_retrieve_inventory_changes" )
222228def test_retrieve_inventory_changes ():
223229 client = helpers .test_client ()
224230 item_variation_id = create_catalog_item_variation ()
@@ -231,6 +237,7 @@ def test_retrieve_inventory_changes():
231237 assert len (response .items ) > 0
232238
233239
240+ @pytest .mark .skip (reason = "Temporarily skipping test_retrieve_inventory_counts" )
234241def test_retrieve_inventory_counts ():
235242 client = helpers .test_client ()
236243 item_variation_id = create_catalog_item_variation ()
@@ -242,6 +249,7 @@ def test_retrieve_inventory_counts():
242249 assert response .count is not None
243250
244251
252+ @pytest .mark .skip (reason = "Temporarily skipping test_retrieve_inventory_adjustments" )
245253def test_retrieve_inventory_adjustments ():
246254 client = helpers .test_client ()
247255 item_variation_id = create_catalog_item_variation ()
0 commit comments