- 20 3月, 2019 6 次提交
-
-
由 Cleber Rosa 提交于
There's no need to keep the special conditions for Python 2, now that it's not supported anymore. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
This test actually works fine under Python 3, the skip was not properly lifted before. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
We can now just use the module name as in Python 3 standard library. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The Python version used to run Avocado is not being respected in this test. 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>
-
- 18 3月, 2019 1 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 13 3月, 2019 1 次提交
-
-
由 Cleber Rosa 提交于
The build of a given image, when given to avocado.utils.vmimage.get() is incorrectly being assigned the same version number. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 12 3月, 2019 1 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 11 3月, 2019 1 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 09 3月, 2019 5 次提交
-
-
由 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>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 08 3月, 2019 8 次提交
-
-
由 Cleber Rosa 提交于
And the compatiblity helper six. With Python 2 gone, a number of package changes are also introduced, so that the packages are always named python3-<suffix>. Also, because it would be confusing not having an "avocado" script, and to conform with the system wide change introduced by distros that now offer Python 3 by default, the scripts are no longer called avocado-3 (or avocado-3.x), but simply "avocado". Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
This basically means that any pushes to the 69lts branch will also generate a new Travis CI job. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
So that we can start testing newer Python versions and more up to date platforms. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
And avoid checking for the existence (and readability) of the ISO file on other backends, given that now it's possible to create ISO files. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The check for duplicate responses coming from a gdb command is currently not effective, given that the "response already received" flag is never set. This was spotted by an lgtm.com alert. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The command result gets assigned to variables that are either not used, or used only once. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Besides Copr, which provides a build status badge, let's also (proudly) display the ratings and issues that lgtm gives us. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 07 3月, 2019 9 次提交
-
-
由 Cleber Rosa 提交于
And by removing the data, we won't have any test to be run, so we're also removing the test itself. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
We only run tests on Python >= 3.4, so let's not attempt to support anything else. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The E1136 (unsubscriptable-object) error on pylint is described as being "emitted when a subscripted value doesn't support subscription (i.e. doesn't define __getitem__ method or __class_getitem__ for a class)". But that is not the case here, so assuming it's a false positive, let's ignore this check. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
It was introduced in 8f8d668b, but stoped being used in 6681f2d6. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
There's no need for the first assignments to the `TERM_SUPPORT` and `STD_OUTPUT` variables. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Commit 9401c928 removed Python 2.6 support, but this bit remained. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
The pylint version in use requires a specific version (or a not so greater version) of astroid. When the astroid version is not pinned, astroid version 2.2.4 currently gets installed. Then, pylint (and thus inspektor) fails with: 'Import' object has no attribute 'infer_name_module' Let's bump the pylint version (already pinned) and pin a compatible astroid version too. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 27 2月, 2019 2 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Commit 72f9bb10 removed default_params, but it was not reflected on examples/tests/abort.py example tests. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 26 2月, 2019 1 次提交
-
-
由 Plamen Dimitrov 提交于
The log files produced for the root logger are confused with hidden files (.INFO, .DEBUG, .WARN, .ERROR) because the root logger's name is an empty string. Signed-off-by: NPlamen Dimitrov <pdimitrov@pevogam.com>
-
- 21 2月, 2019 1 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 20 2月, 2019 4 次提交
-
-
由 Caio Carrara 提交于
Signed-off-by: NCaio Carrara <ccarrara@redhat.com>
-
由 Caio Carrara 提交于
Signed-off-by: NCaio Carrara <ccarrara@redhat.com>
-
由 Cleber Rosa 提交于
Those are the packages for the latest releases, so there are more packages than previously listed. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
由 Cleber Rosa 提交于
Those are the packages for the previous LTS (52.0) version, so the number of plugins are somewhat limited. Signed-off-by: NCleber Rosa <crosa@redhat.com>
-