File tree Expand file tree Collapse file tree 4 files changed +16
-28
lines changed Expand file tree Collapse file tree 4 files changed +16
-28
lines changed Original file line number Diff line number Diff line change @@ -131,19 +131,29 @@ You can install all needed gems for spec tests into the modules directory by
131131running:
132132
133133``` sh
134- bundle install --path .vendor/ --without development system_tests release --jobs " $( nproc) "
134+ bundle config set --local path ' .vendor/'
135+ bundle config set --local without ' development system_tests release'
136+ bundle install --jobs " $( nproc) "
135137```
136138
137139If you also want to run acceptance tests:
138140
139141``` sh
140- bundle install --path .vendor/ --with system_tests --without development release --jobs " $( nproc) "
142+ bundle config set --local path ' .vendor/'
143+ bundle config set --local without ' development release'
144+ bundle config set --local with ' system_tests'
145+ bundle install --jobs " $( nproc) "
141146```
142147
143148Our all in one solution if you don't know if you need to install or update gems:
144149
145150``` sh
146- bundle install --path .vendor/ --with system_tests --without development release --jobs " $( nproc) " ; bundle update; bundle clean
151+ bundle config set --local path ' .vendor/'
152+ bundle config set --local without ' development release'
153+ bundle config set --local with ' system_tests'
154+ bundle install --jobs " $( nproc) "
155+ bundle update
156+ bundle clean
147157```
148158
149159As an alternative to the ` --jobs "$(nproc) ` parameter, you can set an
Original file line number Diff line number Diff line change 2121. * .sw ?
2222/.yardoc /
2323/Guardfile
24+ bolt-debug.log
25+ .rerun.json
Original file line number Diff line number Diff line change 22# Managed by modulesync - DO NOT EDIT
33# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44
5- modulesync_config_version : ' 7.3 .0'
5+ modulesync_config_version : ' 7.4 .0'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments