Document [pytest] env configuration in pytest.toml / .pytest.toml - #262
Merged
gaborbernat merged 1 commit intoSep 14, 2026
Merged
Conversation
gaborbernat
approved these changes
Sep 14, 2026
gaborbernat
enabled auto-merge (squash)
September 14, 2026 13:56
Contributor
Author
|
Thanks for the review and merge, @gaborbernat! The README already documented That example now sits with the other INI forms so the two tables are not easy to mix up. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The README documents the plugin-specific TOML tables (
[tool.pytest_env]inpyproject.toml,[pytest_env]inpytest.toml/.pytest.toml) and the INI-styleenventries forpytest.iniandpyproject.toml, but it never shows thatpytest.toml/.pytest.tomlcan also carry the pytest-native[pytest]table withenv = [...]. Without that example, users can conclude thatpytest.tomlmust use the[pytest_env]table.This adds the missing example to the INI configuration format section, beside the existing
pytest.iniandpyproject.tomlforms, plus a short note on how it relates to the[pytest_env]table. I verified the documented behavior locally: withpytestandpytest-envinstalled, apytest.tomlcontaining the[pytest]table shown in the README sets the listed variables (confirmed with a passing assertion onos.environ).Fixes #261