Revert the default type of `nitpick_ignore[_regex] to list`

This commit is contained in:
Adam Turner
2023-04-25 11:31:57 +01:00
parent 60d8fa10b8
commit d2aa91f63c
3 changed files with 20 additions and 2 deletions

View File

@@ -427,3 +427,18 @@ def test_conf_py_no_language(tempdir):
# Then the language is coerced to English
assert cfg.language == "en"
def test_conf_py_nitpick_ignore_list(tempdir):
"""Regression test for #11355."""
# Given a conf.py file with no language attribute
(tempdir / 'conf.py').write_text("", encoding='utf-8')
# When we load conf.py into a Config object
cfg = Config.read(tempdir, {}, None)
cfg.init_values()
# Then the default nitpick_ignore[_regex] is an empty list
assert cfg.nitpick_ignore == []
assert cfg.nitpick_ignore_regex == []