Change default test repository parent directory to `./test_data/` to avoid conflict with stackviz unit tests

This commit is contained in:
Tim Buckley 2015-08-03 10:36:42 -06:00
parent 4bf57c7152
commit f5f60b3c33
2 changed files with 3 additions and 2 deletions

View File

@ -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*

View File

@ -89,7 +89,7 @@ TEMPLATE_DIRS = [
TEST_REPOSITORIES = [
'/opt/stack/tempest/',
BASE_DIR
os.path.join(BASE_DIR, 'test_data')
]
DSTAT_CSV = 'dstat.log'