@@ -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
@@ -232,18 +242,21 @@ simple tests against it after applying the module. You can run this
232242with:
233243
234244``` sh
235- BEAKER_setfile=debian11-64 bundle exec rake beaker
245+ BEAKER_PUPPET_COLLECTION=puppet7 BEAKER_setfile=debian11-64 bundle exec rake beaker
236246```
237247
238- You can replace the string ` debian10 ` with any common operating system.
248+ You can replace the string ` debian11 ` with any common operating system.
239249The following strings are known to work:
240250
241- * ubuntu1804
242251* ubuntu2004
243- * debian10
252+ * ubuntu2204
244253* debian11
245254* centos7
246255* centos8
256+ * centos9
257+ * almalinux8
258+ * almalinux9
259+ * fedora36
247260
248261For more information and tips & tricks, see [ voxpupuli-acceptance's documentation] ( https://github.com/voxpupuli/voxpupuli-acceptance#running-tests ) .
249262
0 commit comments