-
Notifications
You must be signed in to change notification settings - Fork 0
feat: adjust output when using -j/--jumbo #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,10 +40,17 @@ def test_invalid_repo(uv_run, test_dir, askpass_env, args: list[str]): | |
| text=True, | ||
| ) | ||
| assert result.returncode == 1 | ||
| expected_stdout = """\ | ||
| expected_stdout = ( | ||
| """\ | ||
| Getting repo details | ||
| Cloning https://github.com/dwilding/invalid.git with limited history | ||
| """ | ||
| if args[0] == "-j" | ||
| else """\ | ||
|
Comment on lines
+43
to
+49
|
||
| Getting repo details | ||
| Cloning https://github.com/dwilding/invalid.git | ||
| """ | ||
| ) | ||
| assert result.stdout == expected_stdout | ||
| expected_stderr = """\ | ||
| Error: Unable to access repo. Is the repo private? Try configuring Git to use SSH. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.