We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f1348 commit 5cd827fCopy full SHA for 5cd827f
.github/workflows/merge-workflow.yml
@@ -87,8 +87,6 @@ jobs:
87
python-version:
88
- '3.12'
89
- '3.11'
90
- - '3.10'
91
- - '3.9'
92
steps:
93
- uses: actions/checkout@v2
94
- uses: ./.github/actions/run-tests
azure-devops/azext_devops/tests/utils/authentication.py
@@ -26,5 +26,6 @@ def authentication_setup(self):
26
27
def authenticate(self):
28
# set return values
29
- self.mock_validate_token.return_value = True
+ # Return None instead of True to prevent token validation side effects
30
+ self.mock_validate_token.return_value = None
31
self.mock_get_credential.return_value = UNIT_TEST_PAT_TOKEN
0 commit comments