Skip to content

Commit

Permalink
chore(ci/profiling): skip flaky test on windows (#4563)
Browse files Browse the repository at this point in the history
The test_collect_once_with_class_not_right_type test is very flaky on
Windows and is causing noise in our CI. Disable it for now.
  • Loading branch information
Kyle-Verhoog authored Nov 16, 2022
1 parent 1f00f92 commit 7bef42a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/profiling/collector/test_stack.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- encoding: utf-8 -*-
import collections
import os
import sys
import threading
import time
import timeit
Expand Down Expand Up @@ -129,6 +130,7 @@ def sleep_instance(self):
assert SomeClass.sleep_class()


@pytest.mark.skipif(sys.platform == "win32", reason="FIXME: this test is flaky on Windows")
def test_collect_once_with_class_not_right_type():
# type: (...) -> None
r = recorder.Recorder()
Expand Down

0 comments on commit 7bef42a

Please sign in to comment.