Hello community,
here is the log from the commit of package python-pytest-metadata for
openSUSE:Factory checked in at 2020-06-29 21:18:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pytest-metadata (Old)
and /work/SRC/openSUSE:Factory/.python-pytest-metadata.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-metadata"
Mon Jun 29 21:18:26 2020 rev:4 rq:817713 version:1.10.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-pytest-metadata/python-pytest-metadata.changes
2020-05-19 14:47:28.187940283 +0200
+++
/work/SRC/openSUSE:Factory/.python-pytest-metadata.new.3060/python-pytest-metadata.changes
2020-06-29 21:18:46.997861593 +0200
@@ -1,0 +2,6 @@
+Mon Jun 29 11:52:00 UTC 2020 - Marketa Calabkova <[email protected]>
+
+- Update to 1.10.0
+ * Compatible with pytest-xdist 1.22.3+, now including 2.0+
+
+-------------------------------------------------------------------
Old:
----
pytest-metadata-1.9.0.tar.gz
New:
----
pytest-metadata-1.10.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pytest-metadata.spec ++++++
--- /var/tmp/diff_new_pack.ZebTdv/_old 2020-06-29 21:18:47.565863350 +0200
+++ /var/tmp/diff_new_pack.ZebTdv/_new 2020-06-29 21:18:47.565863350 +0200
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pytest-metadata
-Version: 1.9.0
+Version: 1.10.0
Release: 0
Summary: Pytest plugin for test session metadata
License: MPL-2.0
++++++ pytest-metadata-1.9.0.tar.gz -> pytest-metadata-1.10.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-metadata-1.9.0/AUTHORS
new/pytest-metadata-1.10.0/AUTHORS
--- old/pytest-metadata-1.9.0/AUTHORS 2020-05-05 12:12:40.000000000 +0200
+++ new/pytest-metadata-1.10.0/AUTHORS 2020-06-24 13:56:39.000000000 +0200
@@ -5,3 +5,4 @@
Jim Brännlund
Sam Clements
Tomas Krizek
+Zac Hatfield-Dodds
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-metadata-1.9.0/CHANGES.rst
new/pytest-metadata-1.10.0/CHANGES.rst
--- old/pytest-metadata-1.9.0/CHANGES.rst 2020-05-05 12:12:40.000000000
+0200
+++ new/pytest-metadata-1.10.0/CHANGES.rst 2020-06-24 13:56:39.000000000
+0200
@@ -1,6 +1,13 @@
Release Notes
-------------
+1.10.0 (2020-06-24)
+------------------
+
+* Compatible with ``pytest-xdist`` 1.22.3+, now including 2.0+
+
+ * Thanks to `@Zac-HD <https://github.com/Zac-HD>`_ for the PR
+
1.9.0 (2020-04-03)
------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-metadata-1.9.0/PKG-INFO
new/pytest-metadata-1.10.0/PKG-INFO
--- old/pytest-metadata-1.9.0/PKG-INFO 2020-05-05 12:13:01.483746500 +0200
+++ new/pytest-metadata-1.10.0/PKG-INFO 2020-06-24 13:56:59.271904200 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: pytest-metadata
-Version: 1.9.0
+Version: 1.10.0
Summary: pytest plugin for test session metadata
Home-page: https://github.com/pytest-dev/pytest-metadata
Author: Dave Hunt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-metadata-1.9.0/pytest_metadata/plugin.py
new/pytest-metadata-1.10.0/pytest_metadata/plugin.py
--- old/pytest-metadata-1.9.0/pytest_metadata/plugin.py 2020-05-05
12:12:40.000000000 +0200
+++ new/pytest-metadata-1.10.0/pytest_metadata/plugin.py 2020-06-24
13:56:39.000000000 +0200
@@ -93,8 +93,8 @@
if os.environ.get(var)
]
- if hasattr(config, "slaveoutput"):
- config.slaveoutput["metadata"] = config._metadata
+ if hasattr(config, "workeroutput"):
+ config.workeroutput["metadata"] = config._metadata
config.hook.pytest_metadata(metadata=config._metadata)
@@ -106,7 +106,7 @@
@pytest.mark.optionalhook
def pytest_testnodedown(node):
- # note that any metadata from remote slaves will be replaced with the
- # environment from the final slave to quit
- if hasattr(node, "slaveoutput"):
- node.config._metadata.update(node.slaveoutput["metadata"])
+ # note that any metadata from remote workers will be replaced with the
+ # environment from the final worker to quit
+ if hasattr(node, "workeroutput"):
+ node.config._metadata.update(node.workeroutput["metadata"])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pytest-metadata-1.9.0/pytest_metadata.egg-info/PKG-INFO
new/pytest-metadata-1.10.0/pytest_metadata.egg-info/PKG-INFO
--- old/pytest-metadata-1.9.0/pytest_metadata.egg-info/PKG-INFO 2020-05-05
12:13:01.000000000 +0200
+++ new/pytest-metadata-1.10.0/pytest_metadata.egg-info/PKG-INFO
2020-06-24 13:56:59.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: pytest-metadata
-Version: 1.9.0
+Version: 1.10.0
Summary: pytest plugin for test session metadata
Home-page: https://github.com/pytest-dev/pytest-metadata
Author: Dave Hunt