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

1"""Hot tier tests. No ILM. No searchable snapshots.""" 

2 

3from . import TestAny 

4 

5SSTIER = 'hot' 

6 

7 

8class TestDataStream(TestAny): 

9 """TestDataStream""" 

10 

11 sstier = SSTIER 

12 kind = 'data_stream' 

13 roll = False 

14 repo_test = False 

15 ilm = {'enabled': False} 

16 

17 

18class TestIndices(TestAny): 

19 """TestIndices""" 

20 

21 sstier = SSTIER 

22 kind = 'indices' 

23 roll = False 

24 repo_test = False 

25 ilm = {'enabled': False} 

26 

27 

28class TestRolloverIndices(TestAny): 

29 """TestRolloverIndices""" 

30 

31 sstier = SSTIER 

32 kind = 'indices' 

33 roll = True 

34 repo_test = False 

35 ilm = {'enabled': False}