Skip to content

Commit 5cb7f20

Browse files
committedApr 29, 2024
resolve issue with pytest 8.2
1 parent 1212fe6 commit 5cb7f20

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎tests/openvino/test_training.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import pytest
1516
import random
1617
import re
1718
import shutil
@@ -100,6 +101,7 @@ class OVTrainerTestDescriptor:
100101
compression_metrics: List[str] = field(default_factory=list)
101102

102103

104+
@pytest.mark.skip
103105
class OVTrainerBaseTrainingTest(unittest.TestCase, ABC):
104106
ovmodel_cls = OVModel
105107
task = "unknown"
@@ -283,10 +285,7 @@ def tearDown(self):
283285
"initializer": {
284286
"range": {
285287
"num_init_samples": 16,
286-
"type": "percentile",
287-
"params": {"min_percentile": 0.01, "max_percentile": 99.99},
288-
},
289-
"batchnorm_adaptation": {"num_bn_adaptation_samples": 4},
288+
"type": "percentile",Base
290289
},
291290
"scope_overrides": {"activations": {"{re}.*matmul_0": {"mode": "asymmetric"}}},
292291
}

0 commit comments

Comments
 (0)