Commit 3f3042f 1 parent 4249047 commit 3f3042f Copy full SHA for 3f3042f
File tree 4 files changed +16
-28
lines changed
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
131
131
running:
132
132
133
133
``` 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) "
135
137
```
136
138
137
139
If you also want to run acceptance tests:
138
140
139
141
``` 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) "
141
146
```
142
147
143
148
Our all in one solution if you don't know if you need to install or update gems:
144
149
145
150
``` 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
147
157
```
148
158
149
159
As an alternative to the ` --jobs "$(nproc) ` parameter, you can set an
Original file line number Diff line number Diff line change 21
21
. * .sw ?
22
22
/.yardoc /
23
23
/Guardfile
24
+ bolt-debug.log
25
+ .rerun.json
Original file line number Diff line number Diff line change 2
2
# Managed by modulesync - DO NOT EDIT
3
3
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4
4
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