Skip to content

Commit 5034795

Browse files
committed
debug CI
1 parent 39da5ec commit 5034795

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
GIT2CPP_TEST_PRIVATE_TOKEN: ${{ secrets.GIT2CPP_TEST_PRIVATE_TOKEN }}
5353
run: |
54-
pytest -v
54+
pytest -v -rP
5555
5656
coverage:
5757
name: 'Test coverage'

src/utils/credentials.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ int user_credentials(
2727
return GIT_EAUTH;
2828
}
2929

30+
std::cout << "XXXX username " << username.c_str() << " XXXX" << std::endl;
31+
3032
std::string password = prompt_input("Password: ", false);
3133
if (password.empty()) {
3234
giterr_set_str(GIT_ERROR_HTTP, "No password specified");

0 commit comments

Comments
 (0)