Skip to content

Commit 154b2a9

Browse files
committed
debug CI
1 parent 46f917c commit 154b2a9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ jobs:
4949
5050
- name: Run tests
5151
env:
52-
GIT2CPP_TEST_PRIVATE_TOKEN: ${{ secrets.GIT2CPP_TEST_PRIVATE_TOKEN }}
52+
#GIT2CPP_TEST_PRIVATE_TOKEN: ${{ secrets.GIT2CPP_TEST_PRIVATE_TOKEN }}
53+
GIT2CPP_TEST_PRIVATE_TOKEN: github_pat_ABCD
5354
run: |
5455
pytest -v -rP
5556

test/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def private_test_repo():
7676
token = os.getenv("GIT2CPP_TEST_PRIVATE_TOKEN")
7777
if token is None:
7878
pytest.skip("No token for private test repo GIT2CPP_TEST_PRIVATE_TOKEN")
79+
print(f"TOKEN {token}")
7980
assert token.startswith("github_pat")
8081
repo_name = "git2cpp-test-private"
8182
org_name = "QuantStack"

0 commit comments

Comments
 (0)