Accepting request 829113 from home:mcalabkova:branches:devel:languages:python:pytest

- Update to 2.0.0
  * Drop backward-compatibility "slave" aliases related to worker nodes.  We deliberately 
    moved away from this terminology years ago, and it seems like the right time to finish 
    the deprecation and removal process.
  * ``pytest-xdist`` no longer supports Python 2.7.
  * New functions ``xdist.is_xdist_worker``, ``xdist.is_xdist_master``, ``xdist.get_xdist_worker_id``, 
    to easily identify the current node.
  * When using ``-n auto``, count the number of physical CPU cores instead of logical ones.
  * ``pytest-xdist`` now requires ``pytest>=6.0``.

OBS-URL: https://build.opensuse.org/request/show/829113
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-xdist?expand=0&rev=19
This commit is contained in:
Tomáš Chvátal
2020-08-25 08:26:18 +00:00
committed by Git OBS Bridge
parent 32aee40166
commit d98e85796a
4 changed files with 23 additions and 9 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Tue Aug 25 08:12:22 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 2.0.0
* Drop backward-compatibility "slave" aliases related to worker nodes. We deliberately
moved away from this terminology years ago, and it seems like the right time to finish
the deprecation and removal process.
* ``pytest-xdist`` no longer supports Python 2.7.
* New functions ``xdist.is_xdist_worker``, ``xdist.is_xdist_master``, ``xdist.get_xdist_worker_id``,
to easily identify the current node.
* When using ``-n auto``, count the number of physical CPU cores instead of logical ones.
* ``pytest-xdist`` now requires ``pytest>=6.0``.
-------------------------------------------------------------------
Wed May 13 09:10:04 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>