Skip to content

Commit 6407c9c

Browse files
Skip test_aware_training_quantization (#1149)
1 parent 4806df2 commit 6407c9c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/openvino/test_quantization.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1104,9 +1104,7 @@ class OVTrainerTest(unittest.TestCase):
11041104
SUPPORTED_ARCHITECTURES_WITH_EXPECTED_QUANTIZED_MATMULS = (("albert", 61, 39),)
11051105

11061106
@parameterized.expand(SUPPORTED_ARCHITECTURES_WITH_EXPECTED_QUANTIZED_MATMULS)
1107-
@unittest.skipIf(
1108-
is_transformers_version(">=", "4.46"), reason="OVTrainer is not compatible with transformers>=v4.46"
1109-
)
1107+
@unittest.skip(reason="Not supported on hosts running pre-commit jobs since OpenVINO 2025.0 relase.")
11101108
def test_aware_training_quantization(self, model_name, expected_fake_nodes, expected_int8_nodes):
11111109
model_id = MODEL_NAMES[model_name]
11121110
model = AutoModelForSequenceClassification.from_pretrained(model_id, attn_implementation="eager")

0 commit comments

Comments
 (0)