- 16 8月, 2016 1 次提交
-
-
由 Lukáš Doktor 提交于
Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
- 25 7月, 2016 1 次提交
-
-
由 Amador Pahim 提交于
This reverts commit 00e9aa46.
-
- 22 7月, 2016 1 次提交
-
-
由 Amador Pahim 提交于
Add captions to separate sections in readthedocs left menu. Remove the heads as we are now using captions. Fix anchors. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 02 5月, 2016 1 次提交
-
-
由 Amador Pahim 提交于
Fabric 1.10.0 has a dependency issue. This patch changes the fabric version in travis to the highest available version right now. Signed-off-by: NAmador Pahim <apahim@redhat.com>
-
- 13 4月, 2016 1 次提交
-
-
由 Amador Pahim 提交于
The xunit plugin claims to be compatible with jenkins-ci junit-4.xsd, but it does not pass on the validation dur to the wrong key name 'skip'. This patch changes the key name to 'skipped' and adds a unittest to validate the xunit output against the junit-4.xsd schema. The junit-4.xsd file is coming from: https://svn.jenkins-ci.org/trunk/hudson/dtkit/dtkit-format/dtkit-junit-model/src/main/resources/com/thalesgroup/dtkit/junit/model/xsd/junit-4.xsd Reference: https://trello.com/c/ZdEb0TblSigned-off-by: NAmador Pahim <apahim@redhat.com>
-
- 19 2月, 2016 1 次提交
-
-
由 Lukáš Doktor 提交于
Python 2.6 works fine with both, but let's use the specific version of pystache we support (in html-plugin) but don't test in CI. Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
- 18 2月, 2016 1 次提交
-
-
由 Hao Liu 提交于
Managing different requirements files for different python version requires much more efforts when the requirements became too complex. This issue emerged when a required package `stevedore` decide not supporting Python 2.6 since version `1.11.0`. ``` >>> import stevedore Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.6/site-packages/stevedore/__init__.py", line 23, in <module> LOG.addHandler(logging.NullHandler()) AttributeError: 'module' object has no attribute 'NullHandler ``` Pip provides a feature named [Environment Markers](https://www.python.org/dev/peps/pep-0496/) for requirements file to include specific packages conditionally which could properly solve this issue. This fix: 1. Use environment markers and merge python version specific requirements files; 2. Remove python version specific requirements files references in `Makefile` and Travis configuration; 3. Use `pip install -r requirements.txt` to replace per-line package installation; 4. Restrain package `stevedore` on Python 2.6 to `1.10.0`. Signed-off-by: NHao Liu <hliu@redhat.com>
-
- 18 12月, 2015 1 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 03 12月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Inspektor 0.2.0 has some improvements in the queue, mainly now by default we are going to start being picky on unused imports. Which is something I wanted to do for a long time. Signed-off-by: NLucas Meneghel Rodrigues <lookkas@gmail.com>
-
- 01 12月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Require inspektor 0.1.19 to fix the pylint requirement problems on python 2.6. Signed-off-by: NLucas Meneghel Rodrigues <lookkas@gmail.com>
-
- 03 9月, 2015 1 次提交
-
-
由 Cleber Rosa 提交于
The unittest module, and unittest2 backport on Python 2.6, is capable of finding unittests and running them. So, effectively, we do not need nose at all. This patch removes the dependency on nose, replacing the run script with a version based solely on the unittest module. One change of functionality is that run now looks and runs tests in the standard selftests directories (unit, functional, doc), and does not accept command line arguments. If one wants to run a subset of them, it's pretty easy to just use the unittest module for that: $ python -m unittest discover -s selftests/unit Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 15 8月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Add functional automated tests for the Ctrl+C feature. They use aexpect and psutil, so add their dependencies to the relevant requirement files. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 01 8月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Update inspektor requirement to 0.1.16, since it fixes the bug of it not requiring pep8. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 30 7月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
This library is used to control the linux boxes init systems, (sysvinit vs systemd). It's useful for some tests to be able to stop/start services, so that we transplanted it from autotest. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 07 7月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
So that we can do cyclical deps checking in the avocado source. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 18 6月, 2015 1 次提交
-
-
由 Lukáš Doktor 提交于
The gendata is a nice example of multiple-subtests test. Add a functional test that checks gendata creates the files correctly and that two subtests are spawned. Signed-off-by: NLukáš Doktor <ldoktor@redhat.com>
-
- 18 3月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Add a new python 2.6 target so that we can make sure avocado works on older distros (our specific focus here is RHEL 6, but of course, we expect the work on RHEL 6 to be useful to other distros sticking with older versions of the python runtime). In order to do that, we added a new 2.6 related requirements file, and changed the requirements a bit so that it all works under the particular Travis CI environment. Changes from v1: * Per ldoktor's suggestion, use conditional install of backports using $TRAVIS_PYTHON_VERSION Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 27 2月, 2015 1 次提交
-
-
由 Cleber Rosa 提交于
Signed-off-by: NCleber Rosa <crosa@redhat.com>
-
- 11 2月, 2015 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
It'll be necessary so that we can start ignoring error E402 during pylint checking. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 26 11月, 2014 1 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Document requirements.txt, split it into 3 files: * requirements.txt - Used to install deps for functionality * tests-requirements.txt - Used to install deps to test avocado * travis-requirements.txt - Used exclusively for Travis CI jobs Also, clean up and simplify Travis install job section. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-