mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-13 08:04:18 +00:00
Remove redundant sample data
This commit is contained in:
parent
705c16a268
commit
3b80b2e05a
1 changed files with 2 additions and 9 deletions
|
|
@ -76,16 +76,9 @@ def test_should_ignore_file(lines, expected, default_options):
|
||||||
assert file_processor.should_ignore_file() is expected
|
assert file_processor.should_ignore_file() is expected
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize('lines', [
|
def test_should_ignore_file_to_handle_disable_noqa(default_options):
|
||||||
['#!/usr/bin/python', '# flake8: noqa', 'a = 1'],
|
|
||||||
['#!/usr/bin/python', '# flake8:noqa', 'a = 1'],
|
|
||||||
['# flake8: noqa', '#!/usr/bin/python', 'a = 1'],
|
|
||||||
['# flake8:noqa', '#!/usr/bin/python', 'a = 1'],
|
|
||||||
['#!/usr/bin/python', 'a = 1', '# flake8: noqa'],
|
|
||||||
['#!/usr/bin/python', 'a = 1', '# flake8:noqa'],
|
|
||||||
])
|
|
||||||
def test_should_ignore_file_to_handle_disable_noqa(lines, default_options):
|
|
||||||
"""Verify that we ignore a file if told to."""
|
"""Verify that we ignore a file if told to."""
|
||||||
|
lines = ['# flake8: noqa']
|
||||||
file_processor = processor.FileProcessor('-', default_options, lines)
|
file_processor = processor.FileProcessor('-', default_options, lines)
|
||||||
assert file_processor.should_ignore_file() is True
|
assert file_processor.should_ignore_file() is True
|
||||||
default_options.disable_noqa = True
|
default_options.disable_noqa = True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue