From 7337563ee43f01c12a4272dac8f280c35eb3ed6efb4ff6c5226462dfb83a3010 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Mon, 3 Jun 2019 08:52:18 +0000 Subject: [PATCH 1/2] - Update to 1.28.0: * #426: pytest-xdist now uses the new pytest_report_to_serializable and pytest_report_from_serializable hooks from pytest 4.4 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-xdist?expand=0&rev=8 --- pytest-xdist-1.27.0.tar.gz | 3 --- pytest-xdist-1.28.0.tar.gz | 3 +++ python-pytest-xdist.changes | 7 +++++++ python-pytest-xdist.spec | 6 +++--- 4 files changed, 13 insertions(+), 6 deletions(-) delete mode 100644 pytest-xdist-1.27.0.tar.gz create mode 100644 pytest-xdist-1.28.0.tar.gz diff --git a/pytest-xdist-1.27.0.tar.gz b/pytest-xdist-1.27.0.tar.gz deleted file mode 100644 index 161e2e2..0000000 --- a/pytest-xdist-1.27.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a96ed691705882560fa3fc95531fbd4c224896c827f4004817eb2dcac4ba41a2 -size 65259 diff --git a/pytest-xdist-1.28.0.tar.gz b/pytest-xdist-1.28.0.tar.gz new file mode 100644 index 0000000..f520858 --- /dev/null +++ b/pytest-xdist-1.28.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83a485293e81fd57c8a5a85a3f12473a532c5ca7dec518857cbb72766bb526c +size 61486 diff --git a/python-pytest-xdist.changes b/python-pytest-xdist.changes index bf79f1b..fd9c59b 100644 --- a/python-pytest-xdist.changes +++ b/python-pytest-xdist.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Mon Jun 3 08:49:46 UTC 2019 - Tomáš Chvátal + +- Update to 1.28.0: + * #426: pytest-xdist now uses the new pytest_report_to_serializable and + pytest_report_from_serializable hooks from pytest 4.4 + ------------------------------------------------------------------- Thu Mar 21 09:54:59 UTC 2019 - Tomáš Chvátal diff --git a/python-pytest-xdist.spec b/python-pytest-xdist.spec index d29103a..95e25e1 100644 --- a/python-pytest-xdist.spec +++ b/python-pytest-xdist.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-pytest-xdist -Version: 1.27.0 +Version: 1.28.0 Release: 0 Summary: Distributed testing and loop-on-failing for py.test License: MIT @@ -27,14 +27,14 @@ Url: https://github.com/pytest-dev/pytest-xdist Source0: https://files.pythonhosted.org/packages/source/p/pytest-xdist/pytest-xdist-%{version}.tar.gz BuildRequires: %{python_module execnet >= 1.1} BuildRequires: %{python_module filelock} -BuildRequires: %{python_module pytest >= 3.6.0} +BuildRequires: %{python_module pytest >= 4.4.0} BuildRequires: %{python_module pytest-forked} BuildRequires: %{python_module setuptools_scm} BuildRequires: %{python_module six} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-execnet >= 1.1 -Requires: python-pytest >= 3.6.0 +Requires: python-pytest >= 4.4.0 Requires: python-pytest-forked Requires: python-six BuildArch: noarch From 4620e8d6c3391423b85492d7672a15ea70c561e0f22b9e291a6f9ab7977defac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 2 Jul 2019 12:28:43 +0000 Subject: [PATCH 2/2] - Update to 1.29.0: * #226: --max-worker-restart now assumes a more reasonable value (4 times the number of nodes) when not given explicitly. This prevents test suites from running forever when the suite crashes during collection. * #435: When the test session is interrupted due to running out of workers, the reason is shown in the test summary for easier viewing. * #442: Compatibility fix for upcoming pytest 5.0: session.exitstatus is now an IntEnum object. * #435: No longer show an internal error when we run out of workers due to crashes. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-xdist?expand=0&rev=9 --- pytest-xdist-1.28.0.tar.gz | 3 --- pytest-xdist-1.29.0.tar.gz | 3 +++ python-pytest-xdist.changes | 9 +++++++++ python-pytest-xdist.spec | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) delete mode 100644 pytest-xdist-1.28.0.tar.gz create mode 100644 pytest-xdist-1.29.0.tar.gz diff --git a/pytest-xdist-1.28.0.tar.gz b/pytest-xdist-1.28.0.tar.gz deleted file mode 100644 index f520858..0000000 --- a/pytest-xdist-1.28.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f83a485293e81fd57c8a5a85a3f12473a532c5ca7dec518857cbb72766bb526c -size 61486 diff --git a/pytest-xdist-1.29.0.tar.gz b/pytest-xdist-1.29.0.tar.gz new file mode 100644 index 0000000..59daeb1 --- /dev/null +++ b/pytest-xdist-1.29.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3489d91516d7847db5eaecff7a2e623dba68984835dbe6cedb05ae126c4fb17f +size 61788 diff --git a/python-pytest-xdist.changes b/python-pytest-xdist.changes index fd9c59b..697102b 100644 --- a/python-pytest-xdist.changes +++ b/python-pytest-xdist.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Tue Jul 2 12:24:33 UTC 2019 - Tomáš Chvátal + +- Update to 1.29.0: + * #226: --max-worker-restart now assumes a more reasonable value (4 times the number of nodes) when not given explicitly. This prevents test suites from running forever when the suite crashes during collection. + * #435: When the test session is interrupted due to running out of workers, the reason is shown in the test summary for easier viewing. + * #442: Compatibility fix for upcoming pytest 5.0: session.exitstatus is now an IntEnum object. + * #435: No longer show an internal error when we run out of workers due to crashes. + ------------------------------------------------------------------- Mon Jun 3 08:49:46 UTC 2019 - Tomáš Chvátal diff --git a/python-pytest-xdist.spec b/python-pytest-xdist.spec index 95e25e1..7d25d6c 100644 --- a/python-pytest-xdist.spec +++ b/python-pytest-xdist.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-pytest-xdist -Version: 1.28.0 +Version: 1.29.0 Release: 0 Summary: Distributed testing and loop-on-failing for py.test License: MIT