| """Test for issue https://github.com/PyCQA/pylint/issues/4286""" |
| # pylint: disable=redefined-outer-name |
| from pylint import epylint as lint |
| def example_path(tmp_path): |
| content = """class IvrAudioApp: |
| path = tmp_path / "my_app.py" |
| with open(path, "w", encoding="utf-8") as f: |
| def test_epylint_good_command(example_path): |
| # pylint: disable-next=consider-using-f-string |
| "%s -E --disable=E1111 --msg-template '{category} {module} {obj} {line} {column} {msg}'" |
| ************* Module my_app |
| error my_app IvrAudioApp.run 4 8 Instance of 'IvrAudioApp' has no 'hassan' member |
| def test_epylint_strange_command(example_path): |
| # pylint: disable-next=consider-using-f-string |
| "%s -E --disable=E1111 --msg-template={category} {module} {obj} {line} {column} {msg}" |
| ************* Module {module} |
| ************* Module {obj} |
| ************* Module {line} |
| ************* Module {column} |
| ************* Module {msg} |
| ************* Module my_app |