From 96428d3c73acc8563fd381583765938c603bcaed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 3 Jan 2018 18:34:55 +0100 Subject: [PATCH] Elastic: use different indices when running unit tests. --- pillar/tests/config_testing.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pillar/tests/config_testing.py b/pillar/tests/config_testing.py index f0f4ba21..04555821 100644 --- a/pillar/tests/config_testing.py +++ b/pillar/tests/config_testing.py @@ -35,3 +35,8 @@ OAUTH_CREDENTIALS = { 'secret': 'google-secret' } } + +ELASTIC_INDICES = { + 'NODE': 'test_nodes', + 'USER': 'test_users', +}