Skip to content

Commit 34ce9b2

Browse files
authored
Cleaned up skip/xfail TCs on the classification e2e tests (#2196)
* cleaned up skipped/xfailed TCs on the classification e2e tests
1 parent 2a0ce12 commit 34ce9b2

File tree

1 file changed

+0
-48
lines changed

1 file changed

+0
-48
lines changed

tests/e2e/cli/classification/test_classification.py

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -428,22 +428,6 @@ def test_otx_eval_openvino(self, template, tmp_dir_path):
428428
tmp_dir_path = tmp_dir_path / "multi_label_cls"
429429
otx_eval_openvino_testing(template, tmp_dir_path, otx_dir, args_m, threshold=0.05)
430430

431-
@e2e_pytest_component
432-
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
433-
@pytest.mark.parametrize("template", templates, ids=templates_ids)
434-
def test_otx_demo(self, template, tmp_dir_path):
435-
tmp_dir_path = tmp_dir_path / "multi_label_cls"
436-
pytest.skip("Demo for multi-label classification is not supported now.")
437-
otx_demo_testing(template, tmp_dir_path, otx_dir, args_m)
438-
439-
@e2e_pytest_component
440-
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
441-
@pytest.mark.parametrize("template", templates, ids=templates_ids)
442-
def test_otx_demo_openvino(self, template, tmp_dir_path):
443-
tmp_dir_path = tmp_dir_path / "multi_label_cls"
444-
pytest.skip("Demo for multi-label classification is not supported now.")
445-
otx_demo_openvino_testing(template, tmp_dir_path, otx_dir, args_m)
446-
447431
@e2e_pytest_component
448432
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
449433
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@@ -458,14 +442,6 @@ def test_otx_eval_deployment(self, template, tmp_dir_path):
458442
tmp_dir_path = tmp_dir_path / "multi_label_cls"
459443
otx_eval_deployment_testing(template, tmp_dir_path, otx_dir, args_m, threshold=0.0)
460444

461-
@e2e_pytest_component
462-
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
463-
@pytest.mark.parametrize("template", templates, ids=templates_ids)
464-
def test_otx_demo_deployment(self, template, tmp_dir_path):
465-
tmp_dir_path = tmp_dir_path / "multi_label_cls"
466-
pytest.xfail("Demo for multi-label classification is not supported now.")
467-
otx_demo_deployment_testing(template, tmp_dir_path, otx_dir, args_m)
468-
469445
@e2e_pytest_component
470446
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
471447
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@@ -630,22 +606,6 @@ def test_otx_eval_openvino(self, template, tmp_dir_path):
630606
tmp_dir_path = tmp_dir_path / "h_label_cls"
631607
otx_eval_openvino_testing(template, tmp_dir_path, otx_dir, args_h, threshold=0.05)
632608

633-
@e2e_pytest_component
634-
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
635-
@pytest.mark.parametrize("template", templates, ids=templates_ids)
636-
def test_otx_demo(self, template, tmp_dir_path):
637-
tmp_dir_path = tmp_dir_path / "h_label_cls"
638-
pytest.skip("Demo for hierarchical classification is not supported now.")
639-
otx_demo_testing(template, tmp_dir_path, otx_dir, args_h)
640-
641-
@e2e_pytest_component
642-
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
643-
@pytest.mark.parametrize("template", templates, ids=templates_ids)
644-
def test_otx_demo_openvino(self, template, tmp_dir_path):
645-
tmp_dir_path = tmp_dir_path / "h_label_cls"
646-
pytest.skip("Demo for hierarchical classification is not supported now.")
647-
otx_demo_openvino_testing(template, tmp_dir_path, otx_dir, args_h)
648-
649609
@e2e_pytest_component
650610
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
651611
@pytest.mark.parametrize("template", templates, ids=templates_ids)
@@ -660,14 +620,6 @@ def test_otx_eval_deployment(self, template, tmp_dir_path):
660620
tmp_dir_path = tmp_dir_path / "h_label_cls"
661621
otx_eval_deployment_testing(template, tmp_dir_path, otx_dir, args_h, threshold=0.0)
662622

663-
@e2e_pytest_component
664-
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
665-
@pytest.mark.parametrize("template", templates, ids=templates_ids)
666-
def test_otx_demo_deployment(self, template, tmp_dir_path):
667-
tmp_dir_path = tmp_dir_path / "h_label_cls"
668-
pytest.skip("Demo for hierarchical classification is not supported now.")
669-
otx_demo_deployment_testing(template, tmp_dir_path, otx_dir, args_h)
670-
671623
@e2e_pytest_component
672624
@pytest.mark.skipif(TT_STABILITY_TESTS, reason="This is TT_STABILITY_TESTS")
673625
@pytest.mark.parametrize("template", templates, ids=templates_ids)

0 commit comments

Comments
 (0)