We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab0b76 commit 3e94aafCopy full SHA for 3e94aaf
test/framework/github.py
@@ -583,6 +583,11 @@ def test_validate_github_token(self):
583
if token_old_format:
584
self.assertTrue(gh.validate_github_token(token_old_format, GITHUB_TEST_ACCOUNT))
585
586
+ # if a fine-grained token is available, test with that too
587
+ finegrained_token = os.getenv('TEST_GITHUB_TOKEN_FINEGRAINED')
588
+ if finegrained_token:
589
+ self.assertTrue(gh.validate_github_token(finegrained_token, GITHUB_TEST_ACCOUNT))
590
+
591
def test_github_find_easybuild_easyconfig(self):
592
"""Test for find_easybuild_easyconfig function"""
593
if self.skip_github_tests:
0 commit comments