Overview of pytest-xdist features
masterThe pytest-xdist plugin provides several advanced execution modes:
- Parallelization: Execute tests across multiple CPUs or remote hosts to speed up development or utilize special resources.
- Multi-Platform coverage: Run tests in parallel across different Python interpreters or platforms.
pytestwill rsync your source code to remote locations, though it does not synchronize dependencies. --looponfail(DEPRECATED): Repeatedly runs tests in a subprocess, waiting for file changes to re-run previously failing tests until they pass. Use caution as this feature is deprecated.