diff --git a/tests/utils.py b/tests/utils.py index bd1bbf531df18d2d4cdc64341415997683ca48d0..d681b0d68bb76553422e421e78622b3fae22fbc1 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -169,7 +169,7 @@ def list_test_yaml(dir_path): `test_` and the extension is `.yml`. """ yamls = [] - for root, dirs, files in os.walk(dir_path): + for root, _dirs, files in os.walk(dir_path): for yaml_name in files: if yaml_name.startswith("test_") and yaml_name.endswith(".yml"): test_yaml_path = os.path.join(root, yaml_name)