We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39da5ec commit 5034795Copy full SHA for 5034795
.github/workflows/test.yml
@@ -51,7 +51,7 @@ jobs:
51
env:
52
GIT2CPP_TEST_PRIVATE_TOKEN: ${{ secrets.GIT2CPP_TEST_PRIVATE_TOKEN }}
53
run: |
54
- pytest -v
+ pytest -v -rP
55
56
coverage:
57
name: 'Test coverage'
src/utils/credentials.cpp
@@ -27,6 +27,8 @@ int user_credentials(
27
return GIT_EAUTH;
28
}
29
30
+ std::cout << "XXXX username " << username.c_str() << " XXXX" << std::endl;
31
+
32
std::string password = prompt_input("Password: ", false);
33
if (password.empty()) {
34
giterr_set_str(GIT_ERROR_HTTP, "No password specified");
0 commit comments