diff options
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch | 36 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-blinker_1.4.bb | 2 |
2 files changed, 37 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch b/meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch new file mode 100644 index 0000000000..a04c79b1e0 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch | |||
@@ -0,0 +1,36 @@ | |||
1 | From 9750d01118ee59ab174525e30d987065b69c0538 Mon Sep 17 00:00:00 2001 | ||
2 | From: pgajdos <pgajdos@suse.cz> | ||
3 | Date: Wed, 8 Jul 2020 15:22:19 +0200 | ||
4 | Subject: [PATCH] use pytest instead of deprecated nose | ||
5 | |||
6 | Upstream-Status: Submitted [https://github.com/jek/blinker/pull/60] | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | tests/test_signals.py | 4 ++-- | ||
10 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/tests/test_signals.py b/tests/test_signals.py | ||
13 | index 9771e40..ccbc35b 100644 | ||
14 | --- a/tests/test_signals.py | ||
15 | +++ b/tests/test_signals.py | ||
16 | @@ -4,7 +4,7 @@ import time | ||
17 | |||
18 | import blinker | ||
19 | |||
20 | -from nose.tools import assert_raises | ||
21 | +import pytest | ||
22 | |||
23 | |||
24 | jython = sys.platform.startswith('java') | ||
25 | @@ -232,7 +232,7 @@ def test_meta_connect_failure(): | ||
26 | pass | ||
27 | sig = blinker.Signal() | ||
28 | |||
29 | - assert_raises(TypeError, sig.connect, receiver) | ||
30 | + pytest.raises(TypeError, sig.connect, receiver) | ||
31 | assert not sig.receivers | ||
32 | assert not sig._by_receiver | ||
33 | assert sig._by_sender == {blinker.base.ANY_ID: set()} | ||
34 | -- | ||
35 | 2.35.1 | ||
36 | |||
diff --git a/meta-python/recipes-devtools/python/python3-blinker_1.4.bb b/meta-python/recipes-devtools/python/python3-blinker_1.4.bb index 397fdcfb05..08a961f938 100644 --- a/meta-python/recipes-devtools/python/python3-blinker_1.4.bb +++ b/meta-python/recipes-devtools/python/python3-blinker_1.4.bb | |||
@@ -8,12 +8,12 @@ SRC_URI[sha256sum] = "471aee25f3992bd325afa3772f1063dbdbbca947a041b8b89466dc00d6 | |||
8 | inherit pypi setuptools3 ptest | 8 | inherit pypi setuptools3 ptest |
9 | 9 | ||
10 | SRC_URI += " \ | 10 | SRC_URI += " \ |
11 | file://0001-use-pytest-instead-of-deprecated-nose.patch \ | ||
11 | file://run-ptest \ | 12 | file://run-ptest \ |
12 | " | 13 | " |
13 | 14 | ||
14 | RDEPENDS:${PN}-ptest += " \ | 15 | RDEPENDS:${PN}-ptest += " \ |
15 | ${PYTHON_PN}-pytest \ | 16 | ${PYTHON_PN}-pytest \ |
16 | ${PYTHON_PN}-nose \ | ||
17 | " | 17 | " |
18 | 18 | ||
19 | do_install_ptest() { | 19 | do_install_ptest() { |