!11 [sync] PR-7: Fix test result format compatible

From: @openeuler-sync-bot 
Reviewed-by: @desert-sailor 
Signed-off-by: @desert-sailor
This commit is contained in:
openeuler-ci-bot 2024-04-19 03:20:56 +00:00 committed by Gitee
commit a4b03af820
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 30 additions and 1 deletions

View File

@ -0,0 +1,25 @@
From cfac1a98a6c931cfc9901b783ea03a4ffbe40340 Mon Sep 17 00:00:00 2001
From: desert-sailor <dongxing.wang_a@thundersoft.com>
Date: Mon, 8 Apr 2024 15:04:49 +0800
Subject: [PATCH] Fix test result format compatible
---
tests/test_frontend_setuptools.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/test_frontend_setuptools.py b/tests/test_frontend_setuptools.py
index ab6b3dc..7ed6817 100644
--- a/tests/test_frontend_setuptools.py
+++ b/tests/test_frontend_setuptools.py
@@ -76,7 +76,7 @@ def test_setuptools_prepare_metadata_for_build_wheel(frontend_setuptools: Subpro
assert dist.metadata["Name"] == "demo"
values = [v for k, v in dist.metadata.items() if k == "Requires-Dist"] # type: ignore[attr-defined]
# ignore because "PackageMetadata" has no attribute "items"
- assert sorted(values) == ["magic >3", "requests >2"]
+ assert sorted(values) in [["magic >3", "requests >2"], ["magic (>3)", "requests (>2)"]]
assert isinstance(result.out, str)
assert isinstance(result.err, str)
--
2.43.0

View File

@ -2,13 +2,14 @@
Name: python-pyproject-api
Version: 1.6.1
Release: 2
Release: 3
Summary: API to interact with the python pyproject.toml based projects
License: MIT
URL: https://pyproject-api.readthedocs.org
Source0: https://files.pythonhosted.org/packages/source/p/pyproject-api/pyproject_api-%{version}.tar.gz
Patch1: 0001-Fix-test-result-missing.patch
Patch2: 0002-Fix-test-result-format-compatible.patch
BuildArch: noarch
BuildRequires: python3-devel
@ -60,6 +61,9 @@ PYTEST_XDIST_AUTO_NUM_WORKERS=%{_smp_build_ncpus}} \
%{python3_sitelib}/pyproject_api*.dist-info/
%changelog
* Mon Apr 8 2024 Dongxing Wang <dongxing.wang_a@thundersoft.com> - 1.6.1-3
- Fix test result format compatible
* Sun Apr 7 2024 Dongxing Wang <dongxing.wang_a@thundersoft.com> - 1.6.1-2
- Fix test result missing