From 516f42719cdb98b7b0d035b115e7f9037616499d Mon Sep 17 00:00:00 2001 From: Jake Hunsaker Date: Thu, 17 Dec 2020 16:32:16 -0500 Subject: [policies] Move linux policies into new subdir Moves the actual policy files for supported distributions out of `sos/policies` and into a new subdir `sos/policies/distros`. Note that `Policy()` still lives in the former, while `LinuxPolicy()` has been moved into `sos/policies/distros/__init__.py` Related: #2349 Signed-off-by: Jake Hunsaker --- tests/option_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/option_tests.py') diff --git a/tests/option_tests.py b/tests/option_tests.py index 44e2079f..a92acab8 100644 --- a/tests/option_tests.py +++ b/tests/option_tests.py @@ -8,7 +8,8 @@ import unittest from sos.report.plugins import Plugin -from sos.policies import LinuxPolicy, InitSystem +from sos.policies.distros import LinuxPolicy +from sos.policies.init_systems import InitSystem class MockOptions(object): -- cgit