diff options
author | Cleber Rosa <crosa@redhat.com> | 2021-07-27 08:53:48 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-07-27 12:07:01 -0400 |
commit | e325f38ea9570572b5bdbd9b6c24956deeb9a317 (patch) | |
tree | 3540ba87e6bfcc3d26ab6b10e3152671b16044e1 /tests | |
parent | ee5d9d017b0a1bfeaebee9c21c17e89ef1f909a8 (diff) | |
download | sos-e325f38ea9570572b5bdbd9b6c24956deeb9a317.tar.gz |
[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 <crosa@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vendor_tests/redhat/rhbz1928628.py | 2 |
1 files changed, 0 insertions, 2 deletions
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 """ |