Coverage for tests/integration/test_hot.py: 100%
20 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-05-02 08:55 -0600
« prev ^ index » next coverage.py v7.4.4, created at 2024-05-02 08:55 -0600
1"""Hot tier tests. No ILM. No searchable snapshots."""
3from . import TestAny
5SSTIER = 'hot'
8class TestDataStream(TestAny):
9 """TestDataStream"""
11 sstier = SSTIER
12 kind = 'data_stream'
13 roll = False
14 repo_test = False
15 ilm = {'enabled': False}
18class TestIndices(TestAny):
19 """TestIndices"""
21 sstier = SSTIER
22 kind = 'indices'
23 roll = False
24 repo_test = False
25 ilm = {'enabled': False}
28class TestRolloverIndices(TestAny):
29 """TestRolloverIndices"""
31 sstier = SSTIER
32 kind = 'indices'
33 roll = True
34 repo_test = False
35 ilm = {'enabled': False}