From 3a36b0d3c3b46ceb2ecc19118b450c1530990a8b Mon Sep 17 00:00:00 2001 From: Wovchena Date: Wed, 31 Jul 2024 13:10:47 +0400 Subject: [PATCH] Skip CB --- tests/python_tests/test_preemption.py | 4 ++++ tests/python_tests/test_sampling.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/tests/python_tests/test_preemption.py b/tests/python_tests/test_preemption.py index cce74136eb..4f0f656ca4 100644 --- a/tests/python_tests/test_preemption.py +++ b/tests/python_tests/test_preemption.py @@ -11,6 +11,10 @@ get_multinomial_temperature_and_top_k, get_multinomial_temperature, get_multinomial_temperature_and_top_p from test_sampling import RandomSamplingTestStruct, get_current_plarform_ref_texts + +pytest.skip("continuous_batching fails with nightly ov", allow_module_level=True) + + def get_greedy_seq_len_300() -> GenerationConfig: generation_config = GenerationConfig() generation_config.num_return_sequences = 3 diff --git a/tests/python_tests/test_sampling.py b/tests/python_tests/test_sampling.py index 741c89db78..f44a81885b 100644 --- a/tests/python_tests/test_sampling.py +++ b/tests/python_tests/test_sampling.py @@ -21,6 +21,10 @@ get_multinomial_temperature_and_frequence_penalty, get_multinomial_temperature_and_presence_penalty, \ generate_and_compare_with_hf, get_multinomial_temperature_and_repetition_penalty, get_scheduler_config + +pytest.skip("continuous_batching fails with nightly ov", allow_module_level=True) + + @pytest.mark.precommit @pytest.mark.parametrize("model_id", get_models_list(os.path.join(os.path.dirname(os.path.realpath(__file__)), "models", "precommit"))) @pytest.mark.xfail(