From 16852f62f562478b08b3e12a304007792aa2894e Mon Sep 17 00:00:00 2001 From: Gregor Sturm Date: Mon, 18 Nov 2024 16:57:30 +0100 Subject: [PATCH] Fix test --- tests/test_compile_config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_compile_config.py b/tests/test_compile_config.py index 6586af4..4a9d828 100644 --- a/tests/test_compile_config.py +++ b/tests/test_compile_config.py @@ -51,7 +51,9 @@ def test_auto_adjusting_path(tmp_path, interpolate): str(test_file), method=hiyapyco.METHOD_MERGE, interpolate=interpolate, - loader_callback=partial(_load_yaml_with_auto_adjusting_paths, destination=destination), + loader_callback=partial( + _load_yaml_with_auto_adjusting_paths, destination=destination, missing_path_warnings=set() + ), ) ruamel = YAML()