Skip to content

Commit

Permalink
ci: Run tests on Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
slovdahl committed Jan 25, 2023
1 parent 3457134 commit 7cbe825
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
poetry-version:
- '1.1.15'
steps:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_get_source_project_when_is_fork(self):
def test_get_mr_ci_status(self, version, use_merge_request_pipelines):
with patch('marge.job.Pipeline', autospec=True) as pipeline_class:
pipeline_success = [
Mock(spec=pipeline_class, sha='abc', status='success'),
Mock(sha='abc', status='success'),
]
pipeline_class.pipelines_by_branch.return_value = pipeline_success
pipeline_class.pipelines_by_merge_request.return_value = pipeline_success
Expand Down

0 comments on commit 7cbe825

Please sign in to comment.