Skip to content

Commit

Permalink
Skip test if running in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Feb 7, 2024
1 parent d99a87b commit 0166a5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0166a5e

Please sign in to comment.