Unverified Commit 76bad494 authored by Romain Tartière's avatar Romain Tartière Committed by GitHub
Browse files

Merge pull request #370 from voxpupuli/modulesync

modulesync 7.0.0
parents 5fbaaa46 43849377
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -232,18 +232,21 @@ simple tests against it after applying the module. You can run this
with:

```sh
BEAKER_setfile=debian11-64 bundle exec rake beaker
BEAKER_PUPPET_COLLECTION=puppet7 BEAKER_setfile=debian11-64 bundle exec rake beaker
```

You can replace the string `debian10` with any common operating system.
You can replace the string `debian11` with any common operating system.
The following strings are known to work:

* ubuntu1804
* ubuntu2004
* debian10
* ubuntu2204
* debian11
* centos7
* centos8
* centos9
* almalinux8
* almalinux9
* fedora36

For more information and tips & tricks, see [voxpupuli-acceptance's documentation](https://github.com/voxpupuli/voxpupuli-acceptance#running-tests).

+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/

modulesync_config_version: '6.0.0'
modulesync_config_version: '7.0.0'
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
source ENV['GEM_SOURCE'] || 'https://rubygems.org'

group :test do
  gem 'voxpupuli-test', '~> 6.0',   :require => false
  gem 'voxpupuli-test', '~> 7.0',   :require => false
  gem 'coveralls',                  :require => false
  gem 'simplecov-console',          :require => false
  gem 'puppet_metadata', '~> 3.0',  :require => false
+1 −0
Original line number Diff line number Diff line
@@ -17,3 +17,4 @@ if File.exist?(File.join(__dir__, 'default_module_facts.yml'))
    add_custom_fact name.to_sym, value
  end
end
Dir['./spec/support/spec/**/*.rb'].sort.each { |f| require f }
+1 −1
Original line number Diff line number Diff line
@@ -5,6 +5,6 @@

require 'voxpupuli/acceptance/spec_helper_acceptance'

configure_beaker
configure_beaker(modules: :metadata)

Dir['./spec/support/acceptance/**/*.rb'].sort.each { |f| require f }