diff --git a/tests/flytekit/unit/core/test_local_cache.py b/tests/flytekit/unit/core/test_local_cache.py index 6a9570fd7a..4799ce3f64 100644 --- a/tests/flytekit/unit/core/test_local_cache.py +++ b/tests/flytekit/unit/core/test_local_cache.py @@ -600,6 +600,7 @@ def test_checkpoint_cached_task(): assert t2(n=5) == 6 +@pytest.mark.serial def test_cache_ignore_input_vars(): @task(cache=True, cache_version="v1", cache_ignore_input_vars=["a"]) def add(a: int, b: int) -> int: @@ -614,6 +615,7 @@ def add_wf(a: int, b: int) -> int: assert add_wf(a=20, b=8) == 28 +@pytest.mark.serial def test_set_cache_ignore_input_vars_without_set_cache(): with pytest.raises( ValueError,