diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3-attrs')
3 files changed, 0 insertions, 78 deletions
diff --git a/meta/recipes-devtools/python/python3-attrs/0001-conftest.py-disable-deadline.patch b/meta/recipes-devtools/python/python3-attrs/0001-conftest.py-disable-deadline.patch deleted file mode 100644 index b1e6d99916..0000000000 --- a/meta/recipes-devtools/python/python3-attrs/0001-conftest.py-disable-deadline.patch +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | From 41103f017f6a233ebb477dd1712fe82ea8f1c84c Mon Sep 17 00:00:00 2001 | ||
2 | From: Tim Orling <tim.orling@konsulko.com> | ||
3 | Date: Thu, 29 Feb 2024 08:45:54 -0800 | ||
4 | Subject: [PATCH] conftest.py: disable deadline | ||
5 | |||
6 | The deadline is by default 200ms, but this is intended to be useful to | ||
7 | the developer and not necessarily recommended for heavily loaded CI | ||
8 | systems. Avoid warnings by disabling the deadline completely. | ||
9 | |||
10 | https://github.com/HypothesisWorks/hypothesis/issues/3713 | ||
11 | https://hypothesis.readthedocs.io/en/latest/settings.html#hypothesis.settings.deadline | ||
12 | https://lists.openembedded.org/g/openembedded-core/topic/104640034#196437 | ||
13 | |||
14 | Fixes: | ||
15 | """ | ||
16 | Unreliable test timings! On an initial run, this test took 268.29ms, | ||
17 | which exceeded the deadline of 200.00ms, but on a subsequent run it | ||
18 | took 2.63 ms, which did not. If you expect this sort of variability in | ||
19 | your test timings, consider turning deadlines off for this test by | ||
20 | setting deadline=None. | ||
21 | """ | ||
22 | |||
23 | Upstream-Status: Submitted [https://github.com/python-attrs/attrs/pull/1252] | ||
24 | |||
25 | Signed-off-by: Tim Orling <tim.orling@konsulko.com> | ||
26 | --- | ||
27 | conftest.py | 2 +- | ||
28 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
29 | |||
30 | diff --git a/conftest.py b/conftest.py | ||
31 | index 144e5f3..fdead3d 100644 | ||
32 | --- a/conftest.py | ||
33 | +++ b/conftest.py | ||
34 | @@ -20,7 +20,7 @@ def _frozen(request): | ||
35 | def pytest_configure(config): | ||
36 | # HealthCheck.too_slow causes more trouble than good -- especially in CIs. | ||
37 | settings.register_profile( | ||
38 | - "patience", settings(suppress_health_check=[HealthCheck.too_slow]) | ||
39 | + "patience", settings(suppress_health_check=[HealthCheck.too_slow], deadline=None) | ||
40 | ) | ||
41 | settings.load_profile("patience") | ||
42 | |||
43 | -- | ||
44 | 2.34.1 | ||
45 | |||
diff --git a/meta/recipes-devtools/python/python3-attrs/0001-test_funcs-skip-test_unknown-for-pytest-8.patch b/meta/recipes-devtools/python/python3-attrs/0001-test_funcs-skip-test_unknown-for-pytest-8.patch deleted file mode 100644 index bb69c0f157..0000000000 --- a/meta/recipes-devtools/python/python3-attrs/0001-test_funcs-skip-test_unknown-for-pytest-8.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From cbe95e1aa6d95195dce13406a6f0522b2964babc Mon Sep 17 00:00:00 2001 | ||
2 | From: Tim Orling <tim.orling@konsulko.com> | ||
3 | Date: Fri, 16 Feb 2024 07:17:19 -0800 | ||
4 | Subject: [PATCH] test_funcs: skip test_unknown for pytest 8 | ||
5 | |||
6 | https://github.com/python-attrs/attrs/issues/1233 | ||
7 | |||
8 | Upstream-Status: Inappropriate [Test case needs to be properly fixed upstream] | ||
9 | |||
10 | Signed-off-by: Tim Orling <tim.orling@konsulko.com> | ||
11 | --- | ||
12 | tests/test_funcs.py | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/tests/test_funcs.py b/tests/test_funcs.py | ||
16 | index 044aaab..0872c31 100644 | ||
17 | --- a/tests/test_funcs.py | ||
18 | +++ b/tests/test_funcs.py | ||
19 | @@ -593,7 +593,7 @@ class TestAssoc: | ||
20 | for k, v in change_dict.items(): | ||
21 | assert getattr(changed, k) == v | ||
22 | |||
23 | - @given(simple_classes()) | ||
24 | + @pytest.mark.skip('Broken with pytest 8. See https://github.com/python-attrs/attrs/issues/1233') | ||
25 | def test_unknown(self, C): | ||
26 | """ | ||
27 | Wanting to change an unknown attribute raises an | ||
28 | -- | ||
29 | 2.34.1 | ||
30 | |||
diff --git a/meta/recipes-devtools/python/python3-attrs/run-ptest b/meta/recipes-devtools/python/python3-attrs/run-ptest deleted file mode 100644 index 8d2017d39c..0000000000 --- a/meta/recipes-devtools/python/python3-attrs/run-ptest +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pytest --automake | ||