@@ -65,6 +65,7 @@ def test_ignores_non_python_files(self):
6565 tests_dir = [],
6666 mutate_only_covered_lines = False ,
6767 type_check_command = [],
68+ use_setproctitle = False ,
6869 )
6970 assert config .should_ignore_for_mutation ("foo.txt" ) is True
7071 assert config .should_ignore_for_mutation ("foo.js" ) is True
@@ -82,6 +83,7 @@ def test_does_not_ignore_python_files(self):
8283 tests_dir = [],
8384 mutate_only_covered_lines = False ,
8485 type_check_command = [],
86+ use_setproctitle = False ,
8587 )
8688 assert config .should_ignore_for_mutation ("foo.py" ) is False
8789 assert config .should_ignore_for_mutation ("src/foo.py" ) is False
@@ -98,6 +100,7 @@ def test_respects_do_not_mutate_exact_match(self):
98100 tests_dir = [],
99101 mutate_only_covered_lines = False ,
100102 type_check_command = [],
103+ use_setproctitle = False ,
101104 )
102105 assert config .should_ignore_for_mutation ("foo.py" ) is True
103106 assert config .should_ignore_for_mutation ("bar.py" ) is False
@@ -114,6 +117,7 @@ def test_respects_do_not_mutate_glob_pattern(self):
114117 tests_dir = [],
115118 mutate_only_covered_lines = False ,
116119 type_check_command = [],
120+ use_setproctitle = False ,
117121 )
118122 assert config .should_ignore_for_mutation ("tests/test_foo.py" ) is True
119123 assert config .should_ignore_for_mutation ("src/ignore_me.py" ) is True
@@ -131,6 +135,7 @@ def test_accepts_path_objects(self):
131135 tests_dir = [],
132136 mutate_only_covered_lines = False ,
133137 type_check_command = [],
138+ use_setproctitle = False ,
134139 )
135140 assert config .should_ignore_for_mutation (Path ("foo.py" )) is True
136141 assert config .should_ignore_for_mutation (Path ("bar.py" )) is False
0 commit comments