http://bugzilla.opensuse.org/show_bug.cgi?id=1197874 http://bugzilla.opensuse.org/show_bug.cgi?id=1197874#c2 --- Comment #2 from Jose Lausuch <jalausuch@suse.com> --- There is a reason for this. transactional test calls `get_utt_packages()` https://github.com/os-autoinst/os-autoinst-distri-opensuse/blob/master/tests... And this function returns a file depending on if it's openSUSE or SLE: https://github.com/os-autoinst/os-autoinst-distri-opensuse/blob/master/lib/t... But:
sub is_opensuse { return 1 if check_var('DISTRI', 'opensuse'); return 1 if check_var('DISTRI', 'microos'); return 0; }
This should fix that: https://github.com/os-autoinst/os-autoinst-distri-opensuse/pull/14627 -- You are receiving this mail because: You are on the CC list for the bug.