diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 14:22:50 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 14:57:04 +0100 |
commit | bc4cf3160f653fd5fbc368a42128945379291208 (patch) | |
tree | 1988dfff6de688e3308abc0336d822f4affc9b86 /test/unit/test_bitbucket.py | |
parent | workflows/ci: upgrade an action (diff) | |
download | cgitize-bc4cf3160f653fd5fbc368a42128945379291208.tar.gz cgitize-bc4cf3160f653fd5fbc368a42128945379291208.zip |
workflows/ci: use GitHub token for unit tests
For some reason, unit tests started failing during CI runs.
Diffstat (limited to 'test/unit/test_bitbucket.py')
-rw-r--r-- | test/unit/test_bitbucket.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/unit/test_bitbucket.py b/test/unit/test_bitbucket.py index fdf55ea..2e49168 100644 --- a/test/unit/test_bitbucket.py +++ b/test/unit/test_bitbucket.py @@ -3,6 +3,7 @@ # For details, see https://github.com/egor-tensin/cgitize. # Distributed under the MIT License. +import os import unittest from atlassian.bitbucket.cloud import Cloud @@ -11,7 +12,10 @@ from requests.exceptions import HTTPError class BitbucketTests(unittest.TestCase): def setUp(self): - self.bitbucket = Cloud(cloud=True) + self.bitbucket = Cloud( + username=os.environ.get('CGITIZE_BITBUCKET_USERNAME'), + password=os.environ.get('CGITIZE_BITBUCKET_PASSWORD'), + cloud=True) def test_nonexistent_repo(self): with self.assertRaises(HTTPError): |