82
82
@pytest .mark .skipif (
83
83
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
84
84
)
85
+ @flaky
85
86
def test_container_tasks_get_latest_version (use_containers ):
86
87
data = run_container_operation (
87
88
[
@@ -98,6 +99,7 @@ def test_container_tasks_get_latest_version(use_containers):
98
99
@pytest .mark .skipif (
99
100
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
100
101
)
102
+ @flaky
101
103
def test_container_tasks_get_latest_version_json (use_containers ):
102
104
with (
103
105
tempfile .TemporaryDirectory () as tmpdir ,
@@ -124,6 +126,7 @@ def test_container_tasks_get_latest_version_json(use_containers):
124
126
@pytest .mark .skipif (
125
127
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
126
128
)
129
+ @flaky
127
130
def test_container_tasks_get_latest_version_containerized (use_containers ):
128
131
with (
129
132
tempfile .TemporaryDirectory () as tmpdir ,
@@ -144,6 +147,7 @@ def test_container_tasks_get_latest_version_containerized(use_containers):
144
147
@pytest .mark .skipif (
145
148
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
146
149
)
150
+ @flaky
147
151
def test_container_tasks_get_latest_version_containerized_mpas_tools (use_containers ):
148
152
with (
149
153
tempfile .TemporaryDirectory () as tmpdir ,
@@ -266,6 +270,7 @@ def test_container_tasks_parse_meta_yaml_containerized(use_containers):
266
270
@pytest .mark .skipif (
267
271
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
268
272
)
273
+ @flaky
269
274
def test_container_tasks_rerender_feedstock_containerized_same_as_local (
270
275
use_containers , capfd
271
276
):
@@ -386,6 +391,7 @@ def test_container_tasks_rerender_feedstock_containerized_same_as_local(
386
391
@pytest .mark .skipif (
387
392
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
388
393
)
394
+ @flaky
389
395
def test_container_tasks_rerender_feedstock_containerized_empty (use_containers ):
390
396
with tempfile .TemporaryDirectory () as tmpdir_local :
391
397
# first run the rerender locally
@@ -440,6 +446,7 @@ def test_container_tasks_rerender_feedstock_containerized_empty(use_containers):
440
446
@pytest .mark .skipif (
441
447
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
442
448
)
449
+ @flaky
443
450
def test_container_tasks_rerender_feedstock_containerized_permissions (use_containers ):
444
451
with tempfile .TemporaryDirectory () as tmpdir :
445
452
with pushd (tmpdir ):
@@ -513,6 +520,7 @@ def test_container_tasks_rerender_feedstock_containerized_permissions(use_contai
513
520
@pytest .mark .skipif (
514
521
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
515
522
)
523
+ @flaky
516
524
def test_container_tasks_provide_source_code_containerized (use_containers ):
517
525
with (
518
526
tempfile .TemporaryDirectory () as tmpdir ,
@@ -538,6 +546,7 @@ def test_container_tasks_provide_source_code_containerized(use_containers):
538
546
@pytest .mark .skipif (
539
547
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
540
548
)
549
+ @flaky
541
550
def test_container_tasks_provide_source_code_containerized_patches (use_containers ):
542
551
with (
543
552
tempfile .TemporaryDirectory () as tmpdir ,
@@ -569,6 +578,7 @@ def test_container_tasks_provide_source_code_containerized_patches(use_container
569
578
@pytest .mark .skipif (
570
579
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
571
580
)
581
+ @flaky
572
582
def test_container_tasks_is_recipe_solvable_containerized (use_containers ):
573
583
with tempfile .TemporaryDirectory () as tmpdir :
574
584
with pushd (tmpdir ):
@@ -602,6 +612,7 @@ def test_container_tasks_is_recipe_solvable_containerized(use_containers):
602
612
@pytest .mark .skipif (
603
613
not (HAVE_CONTAINERS and HAVE_TEST_IMAGE ), reason = "containers not available"
604
614
)
615
+ @flaky
605
616
def test_migration_runner_run_migration_containerized_yaml_rebuild (tmpdir ):
606
617
fs_dir = os .path .join (tmpdir , "scipy-feedstock" )
607
618
rp_dir = os .path .join (fs_dir , "recipe" )
0 commit comments