Skip to content

Commit c1334dd

Browse files
committed
correct stackprof
1 parent fe3c598 commit c1334dd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ group :development, :test do
5858
gem "minitest-github_action_reporter", github: "BuonOmo/minitest-github_action_reporter", require: "minitest/github_action_reporter_plugin"
5959
gem "ostruct", "~> 0.6"
6060

61-
gem "stackprof"
61+
gem "minitest-stackprof"
6262

6363
# Gems used for tests meta-programming.
6464
gem "parser"

test/cases/helper_cockroachdb.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class BaseCompatibilityTest < ActiveRecord::TestCase
223223
self.use_transactional_tests = false
224224
end
225225

226-
require "stackprof"
227-
FileUtils.mkdir_p("tmp")
228-
StackProf.start(mode: :wall, interval: 1000, out: "tmp/stackprof.dump", raw: true)
229-
Minitest.after_run { StackProf.stop; StackProf.results("tmp/stackprof.dump") }
226+
# require "stackprof"
227+
# FileUtils.mkdir_p("tmp")
228+
# StackProf.start(mode: :wall, interval: 1000, out: "tmp/stackprof.dump", raw: true)
229+
# Minitest.after_run { StackProf.stop; StackProf.results("tmp/stackprof.dump") }

0 commit comments

Comments
 (0)