Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/profiler/test_continuous_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,12 @@ def test_continuous_profiler_manual_start_and_stop_sampled(
time.sleep(0.1)
assert get_profiler_id() is not None, "profiler should be running"

assert_single_transaction_with_profile_chunks(envelopes, thread)

assert get_profiler_id() is not None, "profiler should be running"

stop_profiler_func()

assert_single_transaction_with_profile_chunks(envelopes, thread)

# the profiler stops immediately in manual mode
assert get_profiler_id() is None, "profiler should not be running"

Expand Down
Loading