- 14 3月, 2018 1 次提交
-
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 12 3月, 2018 2 次提交
-
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 09 3月, 2018 3 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Lukáš Doktor 提交于
Signed-off-by: NLukáš Doktor <ldoktor@redhat.com> * https://github.com/avocado-framework/avocado: Remove deprecated multiplex options
-
- 08 3月, 2018 10 次提交
-
-
由 Cleber Rosa 提交于
On Python 3, the calculation of a value for a unit will return a float. Let's make things predictable accross Python 2 and 3 and force an integer instead. Reference: https://github.com/avocado-framework/avocado/pull/2498Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The skip() method has been deprecated for quite some time. Let's remove it for good and have users using the decorators and cancel() instead. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The '--filter-{only,out}' and '--multiplex' options have been deprecated in favor of '--mux-filter-{only,out}' and '--mux-yaml'. Let's remove them for good. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
To avoid breakage when newer versions come out, let's pin to current GitHub API version to v3. Reference: https://developer.github.com/v3/media/#request-specific-versionSigned-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Amador Pahim 提交于
There's a new DataSize object in avocado.utils.datastructures. Let's remove the redundant code and just use the DataSize object. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Now that we have a second use case for it, let's finally create the DataSize object. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Lukáš Doktor 提交于
Sometimes it's useful to be able to specify multiple references and not just a single one. When list is provided with this patch per-item discovery is performed. Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
由 Lukáš Doktor 提交于
Allowing name_prefix to be list allows one to specified shared parts of the name_prefix inherited from upper-node: !mux functional: !mux name_prefix: ["functional-"] rpm: name_prefix: ["rpm"] git: name_prefix: ["git"] which results in: "functional-rpm" and "functional-git". Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
由 Lukáš Doktor 提交于
The `extra_params` is a mutable object and can be modified by loader. This happens eg. in external_runner loader which removes the optional key. This patch uses `copy.deepcopy` to avoid such issues. Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
- 06 3月, 2018 1 次提交
-
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 01 3月, 2018 2 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 28 2月, 2018 3 次提交
-
-
由 Junxiang Li 提交于
To fix the pip 9.0.1 install python requirements with ">=2.7, >=3.4" failure, ">=2.7, >=3.4" means ">=2.7" and ">=3.4", so the result is ">=3.4" for reference: https://stackoverflow.com/questions/44660448/Signed-off-by: NJunxiang Li <junli@redhat.com>
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 27 2月, 2018 13 次提交
-
-
由 Cleber Rosa 提交于
We are, finally, advertising Python 3 support. Yes, it's supposed to be "beta" quality level, as there are a few leftover issues we know about, and possibly a whole lot more we don't. Still, we're taking that leap of faith, and that suggests describing that so that PyPI users and installation tools know about it. Reference: https://packaging.python.org/tutorials/distributing-packages/#classifiers Reference: https://packaging.python.org/tutorials/distributing-packages/#python-requiresSigned-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The API used to get the file, by name, is `get_data()`, which looks for that file in one of the data directories that the class provides (file-level, class-level, variant-level, etc). Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
These parameters are not class instantiation parameters, which is the indentend usage of those docstring notations. But, even worse, they don't exist in these example tests at all. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
We don't do Python 2.6 anymore, so it's safe to drop this workaround. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Amador Pahim 提交于
The "test" fields was removed from JSON output as it was legacy/duplicated. This patch adapts the remote runner accordingly, using the key "id" instead. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
As part of the v59 release process. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Now there's a new parameter executable to use as the commandline information. The previous parameter, name can now be hijacked by the yaml_loader, making this plugin to break. This patch adapts to that change of internal API. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Now there's a new parameter `executable` to use as the command line information. The previous parameter, `name` can now be hijacked by the yaml_loader, making this plugin to break. This patch adapts to that change of internal API. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Amador Pahim 提交于
Now there's a new parameter `executable` to use as the command line information. The previous parameter, `name` can now be hijacked by the yaml_loader, making this plugin to break. This patch adapts to that change of internal API. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 26 2月, 2018 5 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Amador Pahim 提交于
This check was introduced in the previous draft of this plugin, when it was using gtester, and left over. Dropping. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
由 Harish 提交于
As reported in the following link: https://github.com/avocado-framework/avocado/issues/2476 build.run_make fails to run when used without any argument. This patch handles the failure and runs make with ncpus if it is not specified in "env" Signed-off-by: NHarish <harish@linux.vnet.ibm.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Amador Pahim 提交于
Signed-off-by: NAmador Pahim <apahim@redhat.com>
-