Ruff after aider
This commit is contained in:
parent
44104215a2
commit
1371343ff4
|
@ -87,7 +87,7 @@ def main():
|
||||||
# Parse reviewers and assignees from comma-separated strings to lists
|
# Parse reviewers and assignees from comma-separated strings to lists
|
||||||
reviewers = args.reviewers.split(',') if args.reviewers else None
|
reviewers = args.reviewers.split(',') if args.reviewers else None
|
||||||
assignees = args.assignees.split(',') if args.assignees else None
|
assignees = args.assignees.split(',') if args.assignees else None
|
||||||
|
|
||||||
aider_args = AiderArgs(
|
aider_args = AiderArgs(
|
||||||
gitea_url=args.gitea_url,
|
gitea_url=args.gitea_url,
|
||||||
owner=args.owner,
|
owner=args.owner,
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
import pytest
|
from unittest.mock import patch
|
||||||
from unittest.mock import patch, MagicMock
|
|
||||||
import argparse
|
|
||||||
|
|
||||||
from aider_gitea.__main__ import parse_args
|
from aider_gitea.__main__ import parse_args
|
||||||
|
|
||||||
|
@ -8,16 +6,21 @@ from aider_gitea.__main__ import parse_args
|
||||||
def test_parse_args_with_reviewers_and_assignees():
|
def test_parse_args_with_reviewers_and_assignees():
|
||||||
"""Test that reviewers and assignees arguments are correctly parsed."""
|
"""Test that reviewers and assignees arguments are correctly parsed."""
|
||||||
test_args = [
|
test_args = [
|
||||||
'--gitea-url', 'https://gitea.example.com',
|
'--gitea-url',
|
||||||
'--owner', 'test-owner',
|
'https://gitea.example.com',
|
||||||
'--repo', 'test-repo',
|
'--owner',
|
||||||
'--reviewers', 'user1,user2',
|
'test-owner',
|
||||||
'--assignees', 'user3,user4'
|
'--repo',
|
||||||
|
'test-repo',
|
||||||
|
'--reviewers',
|
||||||
|
'user1,user2',
|
||||||
|
'--assignees',
|
||||||
|
'user3,user4',
|
||||||
]
|
]
|
||||||
|
|
||||||
with patch('sys.argv', ['aider_gitea'] + test_args):
|
with patch('sys.argv', ['aider_gitea'] + test_args):
|
||||||
args = parse_args()
|
args = parse_args()
|
||||||
|
|
||||||
assert args.gitea_url == 'https://gitea.example.com'
|
assert args.gitea_url == 'https://gitea.example.com'
|
||||||
assert args.owner == 'test-owner'
|
assert args.owner == 'test-owner'
|
||||||
assert args.repo == 'test-repo'
|
assert args.repo == 'test-repo'
|
||||||
|
@ -28,14 +31,17 @@ def test_parse_args_with_reviewers_and_assignees():
|
||||||
def test_parse_args_without_reviewers_and_assignees():
|
def test_parse_args_without_reviewers_and_assignees():
|
||||||
"""Test that the parser works without reviewers and assignees."""
|
"""Test that the parser works without reviewers and assignees."""
|
||||||
test_args = [
|
test_args = [
|
||||||
'--gitea-url', 'https://gitea.example.com',
|
'--gitea-url',
|
||||||
'--owner', 'test-owner',
|
'https://gitea.example.com',
|
||||||
'--repo', 'test-repo'
|
'--owner',
|
||||||
|
'test-owner',
|
||||||
|
'--repo',
|
||||||
|
'test-repo',
|
||||||
]
|
]
|
||||||
|
|
||||||
with patch('sys.argv', ['aider_gitea'] + test_args):
|
with patch('sys.argv', ['aider_gitea'] + test_args):
|
||||||
args = parse_args()
|
args = parse_args()
|
||||||
|
|
||||||
assert args.gitea_url == 'https://gitea.example.com'
|
assert args.gitea_url == 'https://gitea.example.com'
|
||||||
assert args.owner == 'test-owner'
|
assert args.owner == 'test-owner'
|
||||||
assert args.repo == 'test-repo'
|
assert args.repo == 'test-repo'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user