diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-02-23 23:36:38 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-02-24 08:30:26 -0800 |
commit | 47ce8529aba7effe5c6a16e069e19b2de99406f7 (patch) | |
tree | 4fbcb263f7ba8fb90de08b77c13af22e6d62e9d3 /meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch | |
parent | 41457cc0a1ea1cb506a7fe86e70aff9ee8b1aad2 (diff) | |
download | meta-openembedded-47ce8529aba7effe5c6a16e069e19b2de99406f7.tar.gz |
python3-blinker: Migrate to use pytest instead of nose for testing
Nose wont work well with python 3.9+ anyway
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-blinker/0001-use-pytest-instead-of-deprecated-nose.patch | 36 |
1 files changed, 36 insertions, 0 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 | |||