From 0166a5e3b5781a8d514e2580c096476965a07078 Mon Sep 17 00:00:00 2001 From: Diego Hurtado Date: Wed, 7 Feb 2024 17:35:53 -0600 Subject: [PATCH] Skip test if running in Windows --- .../test_explicit_bucket_histogram_aggregation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentelemetry-sdk/tests/metrics/integration_test/test_explicit_bucket_histogram_aggregation.py b/opentelemetry-sdk/tests/metrics/integration_test/test_explicit_bucket_histogram_aggregation.py index 23b0609066..6db35fd4c0 100644 --- a/opentelemetry-sdk/tests/metrics/integration_test/test_explicit_bucket_histogram_aggregation.py +++ b/opentelemetry-sdk/tests/metrics/integration_test/test_explicit_bucket_histogram_aggregation.py @@ -30,7 +30,7 @@ class TestExplicitBucketHistogramAggregation(TestCase): test_values = [1, 6, 11, 26, 51, 76, 101, 251, 501, 751] @mark.skipif( - system() != "Linux", + system() == "Windows", reason=( "Tests fail because Windows time_ns resolution is too low so " "two different time measurements may end up having the exact same"