Allow config to exist in ".pytest.ini"
Added config search option of ".pytest.ini" in addition to "pytest.ini"
This commit is contained in:
parent
611b579d21
commit
768a645011
|
@ -96,6 +96,7 @@ def locate_config(
|
|||
and return a tuple of (rootdir, inifile, cfg-dict)."""
|
||||
config_names = [
|
||||
"pytest.ini",
|
||||
".pytest.ini",
|
||||
"pyproject.toml",
|
||||
"tox.ini",
|
||||
"setup.cfg",
|
||||
|
|
Loading…
Reference in New Issue