Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
strategy:
matrix:
CONDA_PY:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
INTEGRATIONS: [""]
include:
- CONDA_PY: "3.11"
- CONDA_PY: "3.12"
INTEGRATIONS: 'all-optionals'

steps:
Expand Down
4 changes: 2 additions & 2 deletions paths_cli/tests/compiling/test_root_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ def test_register_plugins_unit(foo_compiler_plugin, foo_baz_builder_plugin):
with patch(BASE + "_register_builder_plugin", Mock()) as builder, \
patch(BASE + "_register_compiler_plugin", Mock()) as compiler:
register_plugins([foo_baz_builder_plugin, foo_compiler_plugin])
assert builder.called_once_with(foo_baz_builder_plugin)
assert compiler.called_once_with(foo_compiler_plugin)
builder.assert_called_once_with(foo_baz_builder_plugin)
compiler.assert_called_once_with(foo_compiler_plugin)


def test_register_plugins_integration(foo_compiler_plugin,
Expand Down
2 changes: 1 addition & 1 deletion paths_cli/tests/wizard/test_plugin_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_call(self):
with mock.patch(patch_loc, mock_load):
result = loader(wiz)

assert mock_load.called_once_with(wiz, "foos", "foo")
mock_load.assert_called_once_with(wiz, "foos", "foo")
assert result == "some_object"


Expand Down