1313
1414
1515@base .bootstrapped
16- @pytest .mark .asyncio
1716async def test_action (event_loop ):
1817 async with base .CleanModel () as model :
1918 ubuntu_app = await model .deploy (
@@ -53,7 +52,6 @@ async def test_action(event_loop):
5352
5453
5554@base .bootstrapped
56- @pytest .mark .asyncio
5755async def test_get_set_config (event_loop ):
5856 async with base .CleanModel () as model :
5957 app = await model .deploy (
@@ -78,7 +76,6 @@ async def test_get_set_config(event_loop):
7876
7977
8078@base .bootstrapped
81- @pytest .mark .asyncio
8279@pytest .mark .skip ('Update charm' )
8380async def test_status_is_not_unset (event_loop ):
8481 async with base .CleanModel () as model :
@@ -93,7 +90,6 @@ async def test_status_is_not_unset(event_loop):
9390
9491
9592@base .bootstrapped
96- @pytest .mark .asyncio
9793@pytest .mark .skip ('Update charm' )
9894async def test_status (event_loop ):
9995 async with base .CleanModel () as model :
@@ -109,7 +105,6 @@ def app_ready():
109105
110106
111107@base .bootstrapped
112- @pytest .mark .asyncio
113108@pytest .mark .skip ('Update charm' )
114109async def test_add_units (event_loop ):
115110 from juju .unit import Unit
@@ -129,7 +124,6 @@ async def test_add_units(event_loop):
129124
130125
131126@base .bootstrapped
132- @pytest .mark .asyncio
133127async def test_deploy_charmhub_charm (event_loop ):
134128 async with base .CleanModel () as model :
135129 app = await model .deploy ('ubuntu' )
@@ -139,7 +133,6 @@ async def test_deploy_charmhub_charm(event_loop):
139133
140134
141135@base .bootstrapped
142- @pytest .mark .asyncio
143136@pytest .mark .skip ('Skip until a similar k8s solution is found' )
144137async def test_upgrade_charm_switch_channel (event_loop ):
145138 # Note for future:
@@ -184,7 +177,6 @@ async def test_upgrade_charm_switch_channel(event_loop):
184177
185178
186179@base .bootstrapped
187- @pytest .mark .asyncio
188180@pytest .mark .skip ('Update charm' )
189181async def test_upgrade_charm_revision (event_loop ):
190182 async with base .CleanModel () as model :
@@ -197,7 +189,6 @@ async def test_upgrade_charm_revision(event_loop):
197189
198190
199191@base .bootstrapped
200- @pytest .mark .asyncio
201192@pytest .mark .skip ('Update charm' )
202193async def test_upgrade_charm_switch (event_loop ):
203194 async with base .CleanModel () as model :
@@ -212,7 +203,6 @@ async def test_upgrade_charm_switch(event_loop):
212203
213204
214205@base .bootstrapped
215- @pytest .mark .asyncio
216206async def test_upgrade_local_charm (event_loop ):
217207 async with base .CleanModel () as model :
218208 tests_dir = Path (__file__ ).absolute ().parent
@@ -226,7 +216,6 @@ async def test_upgrade_local_charm(event_loop):
226216
227217
228218@base .bootstrapped
229- @pytest .mark .asyncio
230219async def test_upgrade_local_charm_resource (event_loop ):
231220 async with base .CleanModel () as model :
232221 tests_dir = Path (__file__ ).absolute ().parent
@@ -246,7 +235,6 @@ async def test_upgrade_local_charm_resource(event_loop):
246235
247236
248237@base .bootstrapped
249- @pytest .mark .asyncio
250238async def test_upgrade_charm_resource_same_rev_no_update (event_loop ):
251239 async with base .CleanModel () as model :
252240 app = await model .deploy ('keystone' , channel = 'victoria/stable' )
@@ -257,7 +245,6 @@ async def test_upgrade_charm_resource_same_rev_no_update(event_loop):
257245
258246
259247@base .bootstrapped
260- @pytest .mark .asyncio
261248async def test_trusted (event_loop ):
262249 async with base .CleanModel () as model :
263250 await model .deploy ('ubuntu' , trust = True )
@@ -272,7 +259,6 @@ async def test_trusted(event_loop):
272259
273260
274261@base .bootstrapped
275- @pytest .mark .asyncio
276262async def test_app_destroy (event_loop ):
277263 async with base .CleanModel () as model :
278264 app = await model .deploy ('ubuntu' )
@@ -288,7 +274,6 @@ async def test_app_destroy(event_loop):
288274
289275
290276@base .bootstrapped
291- @pytest .mark .asyncio
292277async def test_app_remove_wait_flag (event_loop ):
293278 async with base .CleanModel () as model :
294279 app = await model .deploy ('ubuntu' )
@@ -300,7 +285,6 @@ async def test_app_remove_wait_flag(event_loop):
300285
301286
302287@base .bootstrapped
303- @pytest .mark .asyncio
304288async def test_app_charm_name (event_loop ):
305289 async with base .CleanModel () as model :
306290 app = await model .deploy ('ubuntu' )
0 commit comments