From 5b7eeab7dc3150aad8c1d044cebbbca63ecda6bc Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 25 Aug 2020 09:01:37 -0300 Subject: [PATCH] Release 2.1.0 --- CHANGELOG.rst | 17 +++++++++++++++++ changelog/585.feature.rst | 1 - changelog/585.trivial.rst | 3 --- 3 files changed, 17 insertions(+), 4 deletions(-) delete mode 100644 changelog/585.feature.rst delete mode 100644 changelog/585.trivial.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4e5bb7a..ad758a3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,20 @@ +pytest-xdist 2.1.0 (2020-08-25) +=============================== + +Features +-------- + +- `#585 `_: New ``pytest_xdist_auto_num_workers`` hook can be implemented by plugins or ``conftest.py`` files to control the number of workers when ``--numprocesses=auto`` is given in the command-line. + + +Trivial Changes +--------------- + +- `#585 `_: ``psutil`` has proven to make ``pytest-xdist`` installation in certain platforms and containers problematic, so to use it for automatic number of CPUs detection users need to install the ``psutil`` extra:: + + pip install pytest-xdist[psutil] + + pytest-xdist 2.0.0 (2020-08-12) =============================== diff --git a/changelog/585.feature.rst b/changelog/585.feature.rst deleted file mode 100644 index d77abb4..0000000 --- a/changelog/585.feature.rst +++ /dev/null @@ -1 +0,0 @@ -New ``pytest_xdist_auto_num_workers`` hook can be implemented by plugins or ``conftest.py`` files to control the number of workers when ``--numprocesses=auto`` is given in the command-line. diff --git a/changelog/585.trivial.rst b/changelog/585.trivial.rst deleted file mode 100644 index 2452f5e..0000000 --- a/changelog/585.trivial.rst +++ /dev/null @@ -1,3 +0,0 @@ -``psutil`` has proven to make ``pytest-xdist`` installation in certain platforms and containers problematic, so to use it for automatic number of CPUs detection users need to install the ``psutil`` extra:: - - pip install pytest-xdist[psutil]