Skip to content

Commit 8623852

Browse files
authored
Skip unhappy path category tests (#360)
1 parent 13db2d8 commit 8623852

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/test_annotation.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,9 @@ def test_default_category_gt_upload(dataset):
263263
)
264264

265265

266+
@pytest.mark.skip(
267+
reason="Triggers SFN failed warning - need to find better unhappy tests"
268+
)
266269
def test_non_existent_taxonomy_category_gt_upload(dataset):
267270
annotation = CategoryAnnotation.from_json(
268271
TEST_NONEXISTENT_TAXONOMY_CATEGORY_ANNOTATION[0]
@@ -331,6 +334,9 @@ def test_scene_category_gt_upload(scene_category_dataset):
331334
assert response["annotations_ignored"] == 0
332335

333336

337+
@pytest.mark.skip(
338+
reason="Triggers SFN failed warning - need to find better unhappy tests"
339+
)
334340
def test_non_existent_taxonomy_scene_category_gt_upload(
335341
scene_category_dataset,
336342
):
@@ -836,7 +842,9 @@ def test_default_category_gt_upload_async(dataset):
836842
assert_partial_equality(expected, result)
837843

838844

839-
@pytest.mark.skip("Need to adjust error message on taxonomy failure")
845+
@pytest.mark.skip(
846+
reason="Triggers SFN failed warning - need to find better unhappy tests"
847+
)
840848
@pytest.mark.integration
841849
def test_non_existent_taxonomy_category_gt_upload_async(dataset):
842850
annotation = CategoryAnnotation.from_json(

0 commit comments

Comments
 (0)