Skip to content

Commit c9bd077

Browse files
jguidittajpichon
authored andcommitted
Add support for testing 3.12 and fix test error.
Signed-off-by: Jason Guiditta <[email protected]>
1 parent e771b42 commit c9bd077

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python: ['3.8', '3.9', '3.10', '3.11']
12+
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Setup Python

tests/unit/test_koji_tag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def test_passes_builds_extra_args(sample_tagged_builds):
8484
kt = build_tag('foo')
8585
kt.session.listTagged = MagicMock(return_value=sample_tagged_builds)
8686
assert kt.builds(inherit=True) == sample_tagged_builds
87-
assert kt.session.listTagged.called_with(inherit=True)
87+
kt.session.listTagged.assert_called()
8888

8989

9090
def test_caches_builds(sample_tagged_builds):

0 commit comments

Comments
 (0)