From e325f38ea9570572b5bdbd9b6c24956deeb9a317 Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Tue, 27 Jul 2021 08:53:48 -0400 Subject: [tests] use Avocado "recursive" behavior by default Avocado will, by default, use the "recursive" behavior when looking for tests. It means that the class hierarchy will be crawled recursively, until, for "avocado-instrumented" tests, the top-most parent "avocado.Test" is found. When the "enable" behavior is activated, it forces the class to be considered one containing avocado-instrumented tests, but, it disables the recursive behavior and only the tests local to that specific class are found. Signed-off-by: Cleber Rosa --- tests/vendor_tests/redhat/rhbz1928628.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/vendor_tests') diff --git a/tests/vendor_tests/redhat/rhbz1928628.py b/tests/vendor_tests/redhat/rhbz1928628.py index 00746658..6e473e7c 100644 --- a/tests/vendor_tests/redhat/rhbz1928628.py +++ b/tests/vendor_tests/redhat/rhbz1928628.py @@ -17,7 +17,6 @@ class rhbz1928628(NetworkingPluginTest): https://bugzilla.redhat.com/show_bug.cgi?id=1928628 - :avocado: enable :avocado: tags=stageone """ @@ -34,7 +33,6 @@ class rhbz1928628Enabled(NetworkingPluginTest): WARNING: it has been noted (via this rhbz) that certain NICs may pause during this collection - :avocado: enable :avocado: tags=stageone """ -- cgit