The directory site_tests was conceived long ago as a place to store tests internal to organizations, that could not become upstream. Now in Fedora installs, the absence of this directory will make the code to throw an exception due to its absence. So let's include it in the source tree, and install it with setup.py.
CC: Martin Krizek <[email protected]> Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- client/setup.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 client/site_tests/__init__.py diff --git a/client/setup.py b/client/setup.py index 7d2cf12..0059b58 100644 --- a/client/setup.py +++ b/client/setup.py @@ -56,6 +56,7 @@ setup(name='autotest', 'autotest.client.tools', 'autotest.client.profilers', 'autotest.client.tests', + 'autotest.client.site_tests', 'autotest.client.virt', 'autotest.client', 'autotest', diff --git a/client/site_tests/__init__.py b/client/site_tests/__init__.py new file mode 100644 index 0000000..e69de29 -- 1.7.10.2 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
