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...
This issue tracks the implementation of an automated test to cover the Avocado features/options efficiently, as discussed here: #3969. **Features list:** 🗷 assets.fetch.ignore_errors 🗷 assets.fetch.references 🗷 config.datadir ☐ core.input_encoding ☐...
Avocado's data cache support storing content `by_location`, in which a given file is referred to by its original location, meaning the same file name with a different origin location is...
Currently our Makefile is using `--user` for some targets if it is available (via `PYTHON_DEVELOP_ARGS` variable). However some targets are not using it (i.e: `requirements-dev` and possible future targets inside...
Today we have some arguments that are defined as `list` during "registration time", and we might have multiple syntaxes for those, depending on the "key_type". We need to see if...
The per-test sysinfo support in Avocado is implemented inside the `avocado.core.test` module, which on most cases may never be used in the nrunner based executions (unless the test is an...
After checking avocado deb package with lintian tool several issues occurred: ``` $ lintian -I ../avocado_91.0_amd64.changes --no-tag-display-limit E: avocado source: source-is-missing optional_plugins/html/avocado_result_html/templates/bootstrap.min.js E: avocado source: source-is-missing optional_plugins/html/avocado_result_html/templates/datatables.min.js E: avocado source:...
Minified JS and CSS files cannot be considered as real source files. That's why we should also add original Bootstrap, JQuery and DataTables sources. Because it is not easy to...
To pass lintian check in Debian every binary installed in the system should have its man page. I've used --help output as a reference to create all of them. But...
This allows commands to be run over sudo in ssh without configuring passwordless sudo or using the root account to ssh. This also solves the issue where avocado fails to...