pytest-xdist icon indicating copy to clipboard operation
pytest-xdist copied to clipboard

pytest plugin for distributed testing and loop-on-failures testing modes.

Results 136 pytest-xdist issues
Sort by recently updated
recently updated
newest added

Hi, we are running our tests environment using pytest-xdist inside kubernetes pods. during the last three weeks we started suffering from crashed workers and we don't know how to debug...

Environment: * Pycharm version: PyCharm 2023.3.2 (Professional Edition) * Python version: 3.11 * pytest-xdist version: 3.5.0 * `pytest.ini` file `addopts`: `-ra -q -n auto` * The interpreter is defined using...

I believe ultimately this is a consequence of the testcase name mangling that `pytest-xdist` does (adding @ to the testcase name). I don't know if this should be considered a...

Documentation says to use `pytest_xdist_make_scheduler` to add a new scheduler. However, command line parsing fails because the choices for the `--dist` command line option are fixed by `xdist.plugin.pytest_addoption`. Also, help...

After upgrading pytest-xdist from 3.3.1 to 3.5.0 we are seeing the following test failure come up once in a while. ``` ============================= test session starts ============================== platform linux -- Python...

We are using `--dist loadfile` to distribute tests, and it is working well. We suspect some of our files are taking a long time, but have no good way to...

question

I ran into a pretty weird issue while getting a test suite running with pytest. It seems xdist would capture (or preserve, not sure) setup logs only if the setup...

I have the following module which acts as a script to execute pytest. ``` class CustomPlugin: def pytest_configure(self,config): config.addinivalue_line( "python_files", "*.py" ) config.addinivalue_line( "markers", "ignore_stdout: mark test to ignore stdout...

Hi, I choose "--dist loadgroup" as my distribution strategy and I set 2 groups by `@pytest.mark.xdist_group("group1")`, and **it do works at the beginning.** However, I can not control the time...

this fixes issue #402 Thanks for submitting a PR, your contribution is really appreciated! Here's a quick checklist that should be present in PRs: - [ ] Make sure to...