Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pytest-twisted for openSUSE:Factory checked in at 2022-04-23 19:45:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pytest-twisted (Old) and /work/SRC/openSUSE:Factory/.python-pytest-twisted.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pytest-twisted" Sat Apr 23 19:45:14 2022 rev:5 rq:966222 version:1.13.4 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pytest-twisted/python-pytest-twisted.changes 2022-01-07 12:47:30.451892382 +0100 +++ /work/SRC/openSUSE:Factory/.python-pytest-twisted.new.1538/python-pytest-twisted.changes 2022-04-23 19:45:32.830953429 +0200 @@ -1,0 +2,6 @@ +Mon Mar 28 21:41:17 UTC 2022 - Ben Greiner <c...@bnavigator.de> + +- Add add pytest-twisted-pr148-pytest7.patch + * gh#pytest-dev/pytest-twisted#148 + +------------------------------------------------------------------- New: ---- pytest-twisted-pr148-pytest7.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pytest-twisted.spec ++++++ --- /var/tmp/diff_new_pack.S9NAmY/_old 2022-04-23 19:45:33.262953943 +0200 +++ /var/tmp/diff_new_pack.S9NAmY/_new 2022-04-23 19:45:33.266953948 +0200 @@ -27,6 +27,8 @@ Source: https://github.com/pytest-dev/pytest-twisted/archive/v%{version}.tar.gz#/pytest-twisted-%{version}-gh.tar.gz # PATCH-FIX-OPENSUSE pytest-twisted-ignorepy310DeprecationWarnings.patch -- upstream wants this fixed in twisted itself -- gh#pytest-dev/pytest-twisted/146 Patch0: pytest-twisted-ignorepy310DeprecationWarnings.patch +# PATCH-FIX-UPSTREAM pytest-twisted-pr148-pytest7.patch -- gh#pytest-dev/pytest-twisted#148 +Patch1: https://github.com/pytest-dev/pytest-twisted/pull/148.patch#/pytest-twisted-pr148-pytest7.patch BuildRequires: %{python_module Twisted} BuildRequires: %{python_module decorator} BuildRequires: %{python_module greenlet} ++++++ pytest-twisted-pr148-pytest7.patch ++++++ >From 24dff9f710a02ceb5bb63049ab6dfd591321ca3a Mon Sep 17 00:00:00 2001 From: Kyle Altendorf <s...@fstab.net> Date: Tue, 15 Mar 2022 09:26:16 -0400 Subject: [PATCH] specify just pytester as the plugin --- testing/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/conftest.py b/testing/conftest.py index 72dffd2..c8ed3b7 100644 --- a/testing/conftest.py +++ b/testing/conftest.py @@ -2,7 +2,7 @@ import pytest_twisted -pytest_plugins = "_pytest.pytester" +pytest_plugins = "pytester" @pytest.hookimpl(tryfirst=True)