mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
* Refresh 0001-pyproject.toml-remove-benchmark-disable-option.patch 45.0.6 - 2025-08-05 * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.2. 45.0.5 - 2025-07-02 * Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.1. https://cryptography.io/en/latest/changelog/#v45-0-6 https://cryptography.io/en/latest/changelog/#v45-0-5 Comparing changes: https://github.com/pyca/cryptography/compare/45.0.4...45.0.6 (From OE-Core rev: d2a6a7ef8b7149c9fc2cf497f33612720c1962b7) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
From b033cd32813a104fb216135cdca7da7180912e56 Mon Sep 17 00:00:00 2001
|
|
From: Mingli Yu <mingli.yu@windriver.com>
|
|
Date: Tue, 17 May 2022 17:22:48 +0800
|
|
Subject: [PATCH] pyproject.toml: remove --benchmark-disable option
|
|
|
|
The new version introduced below change, so remove the option
|
|
to avoid python3-pytest-benchmark rdepends to fix the gap.
|
|
496703c8 Refs #7079 -- added basic scaffholding for benchmarks (#7087)
|
|
|
|
Fixes:
|
|
# ./run-ptest
|
|
Free memory: 31.283 GB
|
|
ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...]
|
|
pytest: error: unrecognized arguments: --benchmark-disable
|
|
inifile: /usr/lib/python3-cryptography/ptest/pyproject.toml
|
|
rootdir: /usr/lib/python3-cryptography/ptest
|
|
|
|
Upstream-Status: Inappropriate [OE specific]
|
|
|
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
|
|
|
Refresh for 42.02
|
|
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
|
|
---
|
|
pyproject.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 4746201..df98351 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -129,7 +129,7 @@ exclude = [
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
-addopts = "-r s --capture=no --strict-markers --benchmark-disable"
|
|
+addopts = "-r s --capture=no --strict-markers"
|
|
console_output_style = "progress-even-when-capture-no"
|
|
markers = [
|
|
"skip_fips: this test is not executed in FIPS mode",
|