File tree Expand file tree Collapse file tree 3 files changed +16
-8
lines changed
Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 6565EXTRA_RUN_CONDITION = "extra_run_condition"
6666NM_ONLY_TESTS = {
6767 "playbooks/tests_802_1x_updated.yml" : {
68- EXTRA_RUN_CONDITION : "ansible_distribution != 'RedHat' or\n ansible_distr\
69- ibution_major_version | int < 9" ,
68+ EXTRA_RUN_CONDITION : (
69+ "(ansible_distribution != 'RedHat' and\n "
70+ " ansible_distribution_major_version | int > 7) or\n "
71+ " ansible_distribution_major_version | int == 8"
72+ ),
7073 },
7174 "playbooks/tests_802_1x.yml" : {
72- EXTRA_RUN_CONDITION : "ansible_distribution != 'RedHat' or\n ansible_distr\
73- ibution_major_version | int < 9" ,
75+ EXTRA_RUN_CONDITION : (
76+ "(ansible_distribution != 'RedHat' and\n "
77+ " ansible_distribution_major_version | int > 7) or\n "
78+ " ansible_distribution_major_version | int == 8"
79+ ),
7480 },
7581 "playbooks/tests_ignore_auto_dns.yml" : {},
7682 "playbooks/tests_bond_options.yml" : {},
Original file line number Diff line number Diff line change 2121 import_playbook : playbooks/tests_802_1x.yml
2222 when :
2323 - ansible_distribution_major_version != '6'
24- - ansible_distribution != 'RedHat' or
25- ansible_distribution_major_version | int < 9
24+ - (ansible_distribution != 'RedHat' and
25+ ansible_distribution_major_version | int > 7) or
26+ ansible_distribution_major_version | int == 8
Original file line number Diff line number Diff line change 2121 import_playbook : playbooks/tests_802_1x_updated.yml
2222 when :
2323 - ansible_distribution_major_version != '6'
24- - ansible_distribution != 'RedHat' or
25- ansible_distribution_major_version | int < 9
24+ - (ansible_distribution != 'RedHat' and
25+ ansible_distribution_major_version | int > 7) or
26+ ansible_distribution_major_version | int == 8
You can’t perform that action at this time.
0 commit comments