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...
I try to install and use the remote runner(avocado-framework-plugin-runner-remote ) at the 99.0 release, but it shows that the runner is deprecated. So I just want to know why it...
The examples on https://github.com/avocado-framework/avocado/blob/5a15435a22ba49412bca5890e4e5028b552279b6/docs/source/guides/user/chapters/tags.rst are not executable anymore as the tests mentioned are not available on Avocado. It would be good to create valid tests and update the whole tag's...
**Is your feature request related to a problem? Please describe.** When running `avocado --verbose list`, it still shows some outputs from the legacy runner **Describe the solution you'd like** Remove...
In some of the test runs today there all test went missing and were thus counted as skipped. On closer look, no tests were run and in the additional log...
At some moment, github actions could stop working for free or being limited, we should have some plan to work around this quickly. A possibility is to use https://github.com/nektos/act to...
The most important parts #4767 have been implemented, but there are a couple of extra ideas/features: * Allow wrappers (callables) to be used for special types of tests * Have...
Since we removed the remote, vm and docker plugins we could provide some specific spawner were users don't have to deploy avocado there first. This came from an user request...
Computation variants of bigger models can be time taking and it is not useful to create variants of the same model for every avocado run, because the variants are still...
In the current implementation, variants are tightly coupled with runnables. On https://github.com/avocado-framework/avocado/pull/4852, if Avocado is creating variants, they need to have their own runnable instance. It would be good to...
When running the selftests the file `selftests/functional/test_nrunner_interface.py` is invoked 3 times, first from https://github.com/avocado-framework/avocado/blob/master/selftests/check.py#L499 testing all the runners: ``` (nrunner-interface-1/18) selftests/functional/test_nrunner_interface.py:Interface.test_help;avocado-runner: STARTED (nrunner-interface-1/18) selftests/functional/test_nrunner_interface.py:Interface.test_help;avocado-runner: PASS (0.38 s) (nrunner-interface-2/18) selftests/functional/test_nrunner_interface.py:Interface.test_help;avocado-runner-noop: STARTED...