Skip to content

Commit

Permalink
Add Python 3.12 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianonicolai committed Nov 16, 2023
1 parent 73a0437 commit 0ddc13c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: coactions/dynamic-matrix@v1
with:
min_python: "3.9"
max_python: "3.11"
max_python: "3.12"
other_names: |
lint
docs
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Topic :: System :: Systems Administration",
"Topic :: Software Development :: Bug Tracking",
Expand Down
2 changes: 1 addition & 1 deletion src/molecule/test/a_unit/command/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def test_execute_cmdline_scenarios(
command_args = {"destroy": "always", "subcommand": "test"}
base.execute_cmdline_scenarios(scenario_name, args, command_args)

assert _patched_print_matrix.called_once_with()
_patched_print_matrix.assert_called_once_with()
assert _patched_execute_scenario.call_count == 1


Expand Down

0 comments on commit 0ddc13c

Please sign in to comment.