| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| @@ -612,20 +612,14 @@ def pytest_addoption(parser): | |||
| assert config.getini("custom") == "1" | |||
|
|
|||
| def test_absolute_win32_path(self, pytester: Pytester) -> None: | |||
There was a problem hiding this comment.
I tracked this test to this changelog entry:
* Fix win32 path issue when puttinging custom config file with absolute path
in ``pytest.main("-c your_absolute_path")``.
Seems --version being in the config file has nothing to do with the original issue.
Sorry, something went wrong.
There was a problem hiding this comment.
LGTM
Sorry, something went wrong.
Currently, handling `--version` in `pytest_cmdline_main` requires loading the entire infrastructure, which can be slow depending on the installed plugins. This change introduces a marginal behavioral difference, though it should not cause any issues in practice. Fixes pytest-dev#13574
This regressed in pytest-dev#13575. Fixes pytest-dev#14381.
| Back | FazBrowse Home | New Git URL |
Currently, handling --version in pytest_cmdline_main requires loading the entire infrastructure, which can be slow depending on the installed plugins.
This change introduces a marginal behavioral difference, though it should not cause any issues in practice.
Fixes #13574