Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip test_thread_profiling on 3.0+ #2961

Merged
merged 1 commit into from
Nov 19, 2024
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
2 changes: 2 additions & 0 deletions test/multiverse/suites/agent_only/thread_profiling_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ def after_teardown
# go only let a few cycles through, so we check less than 10

def test_thread_profiling
skip 'Fails on Ruby 3.0+, see Issue #2947' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0')

run_transaction_in_thread(:controller)
run_transaction_in_thread(:task)

Expand Down
Loading