(s:str)
| 14 | |
| 15 | |
| 16 | def remove_misra_config(s:str): |
| 17 | ret = '' |
| 18 | for line in s.splitlines(): |
| 19 | if '[misra-config]' not in line: |
| 20 | ret += line + '\n' |
| 21 | return ret |
| 22 | |
| 23 | |
| 24 | @pytest.fixture(scope="function") |
no outgoing calls
no test coverage detected