Accepting request 542009 from devel:languages:python

-  new pytest-xdist requires pytest-forked package (forwarded request 542008 from mimi_vx)

OBS-URL: https://build.opensuse.org/request/show/542009
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pytest-xdist?expand=0&rev=2
This commit is contained in:
2017-11-17 09:54:54 +00:00
committed by Git OBS Bridge
parent 5382a1ffc6
commit 6f6e326d5f
4 changed files with 105 additions and 10 deletions

View File

@@ -1,3 +1,99 @@
-------------------------------------------------------------------
Wed Nov 15 11:45:36 UTC 2017 - mimi.vx@gmail.com
- new pytest-xdist requires pytest-forked package
-------------------------------------------------------------------
Sat Nov 11 17:25:50 UTC 2017 - arun@gmx.de
- specfile:
* CHANGELOG->CHANGELOG.rst
* update pytest version requirement to 3.0.0
- update to version 1.20.1:
* Bug Fixes
+ Fix hang when all worker nodes crash and restart limit is
reached (#45)
+ Fix issue where the -n option would still run distributed tests
when pytest was run with the --collect-only option (#5)
- changes from version 1.20.0:
* Features
+ xdist now supports tests to log results multiple times,
improving integration with plugins which require it like
pytest-rerunfailures and flaky. (#206)
* Bug Fixes
+ Fix issue where tests were being incorrectly identified if a
worker crashed during the teardown stage of the test. (#124)
- changes from version 1.19.1:
* Bug Fixes
+ Fix crash when transferring internal pytest warnings from
workers to the master node. (#214)
- changes from version 1.19.0:
* Deprecations and Removals
+ --boxed functionality has been moved to a separate plugin,
pytest-forked. This release now depends on " pytest-forked"
and provides --boxed as a backward compatibility option. (#1)
* Features
+ New --dist=loadscope option: sends group of related tests to the
same worker. Tests are grouped by module for test functions and
by class for test methods. See README.rst for more
information. (#191)
+ Warnings are now properly transferred from workers to the master
node. (#92)
* Bug Fixes
+ Fix serialization of native tracebacks (--tb=native). (#196)
- changes from version 1.18.2:
* Bug Fixes
+ Removal of unnecessary dependency on incorrect version of
py. (#105)
+ Fix bug in internal event-loop error handler in the master
node. This bug would shadow the original errors making extremely
hard/impossible for users to diagnose the problem
properly. (#175)
- changes from version 1.18.1 :
* Bug Fixes
+ Fixed serialization of longrepr.sections during error reporting
from workers. (#171)
+ Fix ReprLocal not being unserialized breaking --showlocals
usages. (#176)
- changes from version 1.18.0 :
* pytest-xdist now requires pytest>=3.0.0.
* Features
+ Add long option --numprocesses as alternative for -n. (#168)
* Bug Fixes
+ Fix serialization and deserialization dropping longrepr
details. (#133)
- changes from version 1.17.1 :
* Bug Fixes
+ Hot fix release reverting the change introduced by #124,
unfortunately it broke a number of test suites so we are
reversing this change while we investigate the problem. (#157)
* Improved Documentation
+ Introduced towncrier for CHANGELOG management. (#154)
+ Added HOWTORELEASE documentation. (#155)
- changes from version 1.17.0:
* fix #124: xdist would mark test as complete after 'call' step. As
a result, xdist could identify the wrong test as failing when test
crashes at teardown. To address this issue, xdist now marks test
as complete at teardown.
- changes from version 1.16.0:
* pytest-xdist now requires pytest 2.7 or later.
* Add worker_id attribute in the TestReport
* new hook: pytest_xdist_make_scheduler(config, log), can return
custom tests items distribution logic implementation. You can take
a look at built-in LoadScheduling and EachScheduling
implementations. Note that required scheduler class public API may
change in next pytest-xdist versions.
-------------------------------------------------------------------
Sat Apr 22 08:59:30 UTC 2017 - aloisio@gmx.com