@@ -55,6 +55,7 @@ async def test_build_and_deploy(ops_test: OpsTest) -> None:
55
55
await ops_test .model .wait_for_idle (status = "active" , timeout = 1000 )
56
56
57
57
58
+ @pytest .mark .unstable
58
59
@pytest .mark .parametrize ("process" , DB_PROCESSES )
59
60
async def test_kill_db_process (
60
61
ops_test : OpsTest , process : str , continuous_writes , master_start_timeout
@@ -114,6 +115,7 @@ async def test_kill_db_process(
114
115
), "secondary not up to date with the cluster after restarting."
115
116
116
117
118
+ @pytest .mark .unstable
117
119
@pytest .mark .parametrize ("process" , DB_PROCESSES )
118
120
async def test_freeze_db_process (
119
121
ops_test : OpsTest , process : str , continuous_writes , master_start_timeout
@@ -179,6 +181,7 @@ async def test_freeze_db_process(
179
181
), "secondary not up to date with the cluster after restarting."
180
182
181
183
184
+ @pytest .mark .unstable
182
185
@pytest .mark .parametrize ("process" , DB_PROCESSES )
183
186
async def test_restart_db_process (
184
187
ops_test : OpsTest , process : str , continuous_writes , master_start_timeout
@@ -231,6 +234,7 @@ async def test_restart_db_process(
231
234
), "secondary not up to date with the cluster after restarting."
232
235
233
236
237
+ @pytest .mark .unstable
234
238
@pytest .mark .parametrize ("process" , [PATRONI_PROCESS ])
235
239
@pytest .mark .parametrize ("signal" , ["SIGTERM" , "SIGKILL" ])
236
240
async def test_full_cluster_restart (
@@ -288,6 +292,7 @@ async def test_full_cluster_restart(
288
292
assert total_expected_writes == actual_writes , "writes to the db were missed."
289
293
290
294
295
+ @pytest .mark .unstable
291
296
async def test_forceful_restart_without_data_and_transaction_logs (
292
297
ops_test : OpsTest ,
293
298
continuous_writes ,
0 commit comments