From ea907e4d5aa41927b6b26286d835452d4a55ca62 Mon Sep 17 00:00:00 2001 From: Steve Axthelm Date: Wed, 13 Dec 2023 10:25:21 -0800 Subject: [PATCH] (maint) permit PlatformTagContainer class This commit adds the PlatformTagContainer class to the HostsFileParser module so that tests can be re-run. This class was added to the 5.x series in a previous commit [1] but was not added to the 4.x branch. For context see issue [1]: 45f0bf93577b744bda6843b372e0f3c8319fc5f5 [2]: https://github.com/voxpupuli/beaker/issues/1753 --- lib/beaker/options/hosts_file_parser.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/beaker/options/hosts_file_parser.rb b/lib/beaker/options/hosts_file_parser.rb index 9cf271ba0..364f33e4f 100644 --- a/lib/beaker/options/hosts_file_parser.rb +++ b/lib/beaker/options/hosts_file_parser.rb @@ -4,6 +4,7 @@ module Options module HostsFileParser PERMITTED_YAML_CLASSES = [ 'Beaker', + 'Beaker::DSL::TestTagging::PlatformTagConfiner', 'Beaker::Logger', 'Beaker::Options::OptionsHash', 'Beaker::Platform',