- 03 4月, 2014 17 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
-
由 Lucas Meneghel Rodrigues 提交于
-
由 Lucas Meneghel Rodrigues 提交于
Settings unittest
-
由 Lucas Meneghel Rodrigues 提交于
Add a unittest for the settings implementation. This module will check the type conversion utility, as well as functions behave the way we expect them to. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Another method I thought it'd be useful, but on retrospect, it's unnecessary for the time being. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
So that we can more easily unittest Settings. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
I thought it'd be useful right away, but turns out we can wait to add it, should the need arise. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Add Spec file to build RPM package.
-
由 Rudá Moura 提交于
Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Debian pkg
-
由 Lucas Meneghel Rodrigues 提交于
Add debian package rules and Makefile that allows people to build debian packages from it. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
- 02 4月, 2014 13 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Settings
-
由 Lucas Meneghel Rodrigues 提交于
Fix setup errors
-
由 Lucas Meneghel Rodrigues 提交于
sysinfo: Include /var/log/system.log (Mac compatibility)
-
由 Lucas Meneghel Rodrigues 提交于
If we have an error at test setup stage, avocado will completely crash. This happens because the setup() method is not properly wrapped inside the avocado execution loop. So, trust exception handling to the job level, putting all test executions under a single try/except block with appropriate status and test attribute handling. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Rudá Moura 提交于
Signed-off-by: NRudá Moura <ruda.moura@gmail.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Instead of writing to a location we can't write to when running as a regular user, refer to a user specific path, and use os.path.expanduser to handle the references to ~. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Another step in making avocado to run system wide (and provide distro packages). Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Use the settings module to find out where to locate resources on a system-wide install. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
In order to read and retrieve values from the avocado settings file, which can be in: * Source tree: /etc/settings.ini (quick testing) * ~/.config/avocado/settings.ini * /etc/avocado/settings.ini Implement a settings class, that can be used in other avocado programs. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Let's simplify the program namespace. No need to add nesting for this particular lib. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Add support for Test Results report.
-
由 Lucas Meneghel Rodrigues 提交于
Add option -v | --version to the application.
-
- 28 3月, 2014 2 次提交
-
-
由 Rudá Moura 提交于
Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
由 Rudá Moura 提交于
Actually pass parameter for version when calling ArgumentParser, so we're leaving -V for --verbose. Plus: simplify code for utils.unique(). Signed-off-by: NRuda Moura <rmoura@redhat.com>
-
- 26 3月, 2014 8 次提交
-
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Self runnable tests
-
由 Lucas Meneghel Rodrigues 提交于
Introduce the job.main() entry point in all avocado test modules. This way all of them can be executed. The functionality depends on having avocado installed system wide, though. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
As it is not necessary in avocado anymore. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
A Job is a sequence of operations executed on a machine. This patch implements the class, which is a refactor of the test run function, and a class that implements a convenience found in python unittests: the main() method. This allows test modules to be executable in stand alone mode, without the need of the avocado test runner. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
So that we can make avocado test modules self runnable. Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-
由 Lucas Meneghel Rodrigues 提交于
Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
-