mirror of
https://github.com/voxpupuli/puppet-hashi_stack.git
synced 2025-05-24 02:45:01 +01:00
modulesync 7.4.0
This commit is contained in:
parent
edb01d72b1
commit
7073f88b8c
4 changed files with 16 additions and 28 deletions
16
.github/CONTRIBUTING.md
vendored
16
.github/CONTRIBUTING.md
vendored
|
@ -131,19 +131,29 @@ You can install all needed gems for spec tests into the modules directory by
|
|||
running:
|
||||
|
||||
```sh
|
||||
bundle install --path .vendor/ --without development system_tests release --jobs "$(nproc)"
|
||||
bundle config set --local path '.vendor/'
|
||||
bundle config set --local without 'development system_tests release'
|
||||
bundle install --jobs "$(nproc)"
|
||||
```
|
||||
|
||||
If you also want to run acceptance tests:
|
||||
|
||||
```sh
|
||||
bundle install --path .vendor/ --with system_tests --without development release --jobs "$(nproc)"
|
||||
bundle config set --local path '.vendor/'
|
||||
bundle config set --local without 'development release'
|
||||
bundle config set --local with 'system_tests'
|
||||
bundle install --jobs "$(nproc)"
|
||||
```
|
||||
|
||||
Our all in one solution if you don't know if you need to install or update gems:
|
||||
|
||||
```sh
|
||||
bundle install --path .vendor/ --with system_tests --without development release --jobs "$(nproc)"; bundle update; bundle clean
|
||||
bundle config set --local path '.vendor/'
|
||||
bundle config set --local without 'development release'
|
||||
bundle config set --local with 'system_tests'
|
||||
bundle install --jobs "$(nproc)"
|
||||
bundle update
|
||||
bundle clean
|
||||
```
|
||||
|
||||
As an alternative to the `--jobs "$(nproc)` parameter, you can set an
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue