Added GitPython to requirements. Changed default review path (aesthetics)

This commit is contained in:
Patryk Kowalski
2023-07-24 14:28:37 +02:00
parent 02ecaa340f
commit 8e6518f071
2 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class LocalGitProvider(GitProvider):
self.description_path = settings.get('local.description_path') \ self.description_path = settings.get('local.description_path') \
if settings.get('local.description_path') is not None else self.repo_path / 'description.md' if settings.get('local.description_path') is not None else self.repo_path / 'description.md'
self.review_path = settings.get('local.review_path') \ self.review_path = settings.get('local.review_path') \
if settings.get('local.review_path') is not None else self.repo_path / 'review_path.md' if settings.get('local.review_path') is not None else self.repo_path / 'review.md'
# inline code comments are not supported for local git repositories # inline code comments are not supported for local git repositories
settings.pr_reviewer.inline_code_comments = False settings.pr_reviewer.inline_code_comments = False

View File

@ -10,3 +10,4 @@ python-gitlab==3.15.0
pytest~=7.4.0 pytest~=7.4.0
aiohttp~=3.8.4 aiohttp~=3.8.4
atlassian-python-api==3.39.0 atlassian-python-api==3.39.0
GitPython~=3.1.32