Coverage for watcher/common/policies/__init__.py: 100%

13 statements  

« prev     ^ index     » next       coverage.py v7.8.2, created at 2025-06-17 12:22 +0000

1# Licensed under the Apache License, Version 2.0 (the "License"); you may 

2# not use this file except in compliance with the License. You may obtain 

3# a copy of the License at 

4# 

5# http://www.apache.org/licenses/LICENSE-2.0 

6# 

7# Unless required by applicable law or agreed to in writing, software 

8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 

9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 

10# License for the specific language governing permissions and limitations 

11# under the License. 

12 

13import itertools 

14 

15from watcher.common.policies import action 

16from watcher.common.policies import action_plan 

17from watcher.common.policies import audit 

18from watcher.common.policies import audit_template 

19from watcher.common.policies import base 

20from watcher.common.policies import data_model 

21from watcher.common.policies import goal 

22from watcher.common.policies import scoring_engine 

23from watcher.common.policies import service 

24from watcher.common.policies import strategy 

25 

26 

27def list_rules(): 

28 return itertools.chain( 

29 base.list_rules(), 

30 action.list_rules(), 

31 action_plan.list_rules(), 

32 audit.list_rules(), 

33 audit_template.list_rules(), 

34 data_model.list_rules(), 

35 goal.list_rules(), 

36 scoring_engine.list_rules(), 

37 service.list_rules(), 

38 strategy.list_rules(), 

39 )