avocado
avocado copied to clipboard
Avocado is a set of tools and libraries to help with automated testing. One can call it a test framework with benefits. Native tests are written in Python and they follow the unittest pattern, but any...
Added commonly used methods for nvme operations. will be adding more to this utility in future which are needed for nvme operations. Signed-off-by: Naresh Bannoth
1.Adding a condition check for RHEL 9 version for new NM connection configuration and keeping old configuration as it is to support old versions 2. Adding condition check for path...
Modify avocado/utils/service.py:Adapt if the return value is of type byte Signed-off-by: wangpeng
**Describe the bug** avocado list output is empty **Steps to reproduce** avocado list **Expected behavior** INSTRUMENTED /test/avocado/examples/tests/abort.py:AbortTest.test INSTRUMENTED /test/avocado/examples/tests/assert.py:Assert.test_assert_raises INSTRUMENTED /test/avocado/examples/tests/assert.py:Assert.test_fails_to_raise INSTRUMENTED /test/avocado/examples/tests/assets.py:Hello.test_gpg_signature **Current behavior** output is empty **System information...
The current implementation doesn't accurately determine if the port is in use. We need to attempt a connection to the port rather than just attempting to bind to it. Also,...
1. Early return: When a matching path is found, the result can be returned immediately without continuing to traverse other paths. This can improve efficiency. 2. Use a dictionary to...
Avocado uses a Runnable to describe what is to be executed (usually a test) in a given Task. Runnables (and Tasks) can be defined in JSON files, which are called...
According to GH, we must update the version of used actions due to deprecations of Node.js 16. Message given is: Node.js 16 actions are deprecated. Please update the following actions...
**Is your feature request related to a problem? Please describe.** Avocado's ``exec-test` test type turns its runnable's "kwarg" fields into environment variables. But, while that allows for some control of...
This improves a bit the section that presents the basic Avocado concepts to users.