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

Add profiling gems #120

Merged
merged 3 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions .expeditor/run_windows_tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ $ErrorActionPreference="stop"
Write-Host "--- bundle install"

bundle config --local path vendor/bundle
bundle config --local set without 'docs development'
bundle install --jobs=7 --retry=3
bundle install --jobs=7 --retry=3 --without docs development profile

Write-Host "+++ bundle exec task"
bundle exec $args
Expand Down
6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,9 @@ group :development do
gem "pry-stack_explorer", "~> 0.4.0"
gem "rb-readline"
end

group :profile do
gem "stackprof"
gem "stackprof-webnav"
gem "memory_profiler"
end