We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8eeaaa commit b85b236Copy full SHA for b85b236
tests/cli/test_discover.py
@@ -827,9 +827,12 @@ def test_discover_logs_redact_scan_and_repo_paths(
827
lambda _path: None,
828
)
829
830
+ config_file = user_path / ".vcspull.yaml"
831
+ config_file.write_text("{}\n", encoding="utf-8")
832
+
833
discover_repos(
834
scan_dir_str=str(scan_dir),
- config_file_path_str=str(user_path / ".vcspull.yaml"),
835
+ config_file_path_str=str(config_file),
836
recursive=False,
837
workspace_root_override=None,
838
yes=True,
0 commit comments