Révision 79ef6104
modulesync 7.4.0
.github/CONTRIBUTING.md | ||
---|---|---|
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 |
Formats disponibles : Unified diff