From f5f60b3c33347b368518edb468fa6b8447f4a9da Mon Sep 17 00:00:00 2001 From: Tim Buckley Date: Mon, 3 Aug 2015 10:36:42 -0600 Subject: [PATCH] Change default test repository parent directory to `./test_data/` to avoid conflict with stackviz unit tests --- README.rst | 3 ++- stackviz/settings.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index c31bcd3..39e2a92 100644 --- a/README.rst +++ b/README.rst @@ -74,6 +74,7 @@ Log locations are configured along with normal Django settings in :code:`stackviz/settings.py`. Several different types of logs are rendered by StackViz: -* Tempest (`testr` repositories): :code:`./`, :code:`/opt/stack/tempest/` +* Tempest (`testr` repositories): :code:`./test_data/`, + :code:`/opt/stack/tempest/` * DevStack: *TODO* * Dstat: *TODO* diff --git a/stackviz/settings.py b/stackviz/settings.py index a32bbf2..94f0bd4 100644 --- a/stackviz/settings.py +++ b/stackviz/settings.py @@ -89,7 +89,7 @@ TEMPLATE_DIRS = [ TEST_REPOSITORIES = [ '/opt/stack/tempest/', - BASE_DIR + os.path.join(BASE_DIR, 'test_data') ] DSTAT_CSV = 'dstat.log'