| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Added config search option of ".pytest.ini" in addition to "pytest.ini"
Hidden version of pytest.ini documented.
Added hidden configuration file info to changelog.
Added myself to AUTHORS file.
There was a problem hiding this comment.
Seems like a good idea!
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM, but we need an explicit test that loads from a .pytest.ini file to avoid regressions.
For an example see test_pyproject_toml in test_config.py, I think we can create a new test which follows the same approach taken there.
Sorry, something went wrong.
|
Took the liberty of adding the test myself (we just needed to add a new parameter to a parametrized test actually). Thanks @grintor! |
Sorry, something went wrong.
| """ | ||
| [{section}] | ||
| minversion = 1.0 | ||
| minversion = 3.36 |
There was a problem hiding this comment.
Used a more unusual version number than 1.0 just to be more clear that we are getting the actual value (1.0 seems a bit like it could be a default value).
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Adds support for .pytest.ini as an alternative to pytest.ini. Closes #9987