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)."""
|
and return a tuple of (rootdir, inifile, cfg-dict)."""
|
||||||
config_names = [
|
config_names = [
|
||||||
"pytest.ini",
|
"pytest.ini",
|
||||||
|
".pytest.ini",
|
||||||
"pyproject.toml",
|
"pyproject.toml",
|
||||||
"tox.ini",
|
"tox.ini",
|
||||||
"setup.cfg",
|
"setup.cfg",
|
||||||
|
|
Loading…
Reference in New Issue