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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
- name: Test
run: uv run pytest --cov=flameconnect --cov-report=term-missing --tb=short
- name: Mutation test
run: uv run mutmut run --max-children 2
run: uv run mutmut run --max-children 4
11 changes: 6 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[mutmut]
paths_to_mutate =
src/flameconnect/protocol.py
src/flameconnect/client.py
src/flameconnect/auth.py
src/flameconnect/b2c_login.py
paths_to_mutate = src/flameconnect
also_copy = src
do_not_mutate =
*/__init__.py
src/flameconnect/const.py
src/flameconnect/exceptions.py
max_stack_depth = 8
1 change: 0 additions & 1 deletion tests/test_cli_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,6 @@ async def test_tui_import_error(self, capsys):

with (
patch.dict("sys.modules", {"flameconnect.tui": None}),
patch("builtins.__import__", side_effect=ImportError("no tui")),
pytest.raises(SystemExit),
):
await cmd_tui()
Expand Down