ara/ara/tests/unit
David Moreau Simard 001ed74273
1.0 backport: Add helper modules/scripts to know where ARA is
The location where ARA is installed is hard to predict because it will
depend on the operating system, python2 vs python3 or the usage of
virtualenvs, for example.

That's why we have this rather convenient snippet:
python -c "import os,ara; print(os.path.dirname(ara.__file__))"

This snippet is now further reduced to:
python -m ara.setup.path

But there is also many other variants such as:
- python -m ara.setup.path
- python -m ara.setup.callback_plugins
- python -m ara.setup.action_plugins
- python -m ara.setup.library
- python -m ara.setup.env
- python -m ara.setup.ansible

These can also be imported as such:

from ara.setup import path
from ara.setup import callback_plugins
[...]

This might be expanded upon later but let's stop at this for now.

Change-Id: Ibf1eb495ea0df2f6d8589abeb2220b6e93afdea9
(cherry picked from commit f1e4b5d521)
2018-04-07 15:21:58 -04:00
..
__init__.py Centralize and standardize fake test object resources 2017-02-11 15:54:40 +00:00
common.py Fix unit tests and handle versions of Ansible returning non-bool ignore_errors 2018-02-05 17:21:20 -05:00
fakes.py Fix unit tests and handle versions of Ansible returning non-bool ignore_errors 2018-02-05 17:21:20 -05:00
test_app.py Re-license ARA from ASLv2 to GPLv3 2017-07-24 19:30:34 +00:00
test_ara_read.py Update integration jobs and fix broken unit tests 2018-04-05 20:31:09 -04:00
test_ara_record.py Update integration jobs and fix broken unit tests 2018-04-05 20:31:09 -04:00
test_callback.py Re-license ARA from ASLv2 to GPLv3 2017-07-24 19:30:34 +00:00
test_cli.py Merge "Add subunit output support" 2017-07-31 22:54:19 +00:00
test_config.py Re-license ARA from ASLv2 to GPLv3 2017-07-24 19:30:34 +00:00
test_filters.py Re-license ARA from ASLv2 to GPLv3 2017-07-24 19:30:34 +00:00
test_models.py Re-license ARA from ASLv2 to GPLv3 2017-07-24 19:30:34 +00:00
test_setup.py 1.0 backport: Add helper modules/scripts to know where ARA is 2018-04-07 15:21:58 -04:00
test_utils.py Re-license ARA from ASLv2 to GPLv3 2017-07-24 19:30:34 +00:00