commit:     0b78548646bd14f22199e8c8f7ea7d98a41cdfcb
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 31 15:10:56 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 31 15:20:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b785486

dev-lang/python: Fix appending to COMMON_TEST_SKIPS

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-lang/python/python-3.13.0_beta1_p3.ebuild | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-lang/python/python-3.13.0_beta1_p3.ebuild 
b/dev-lang/python/python-3.13.0_beta1_p3.ebuild
index 1bc9c7f697f9..3744ca2daff1 100644
--- a/dev-lang/python/python-3.13.0_beta1_p3.ebuild
+++ b/dev-lang/python/python-3.13.0_beta1_p3.ebuild
@@ -252,7 +252,7 @@ src_configure() {
        # Arch-specific skips.  See #931888 for a collection of these.
        case ${CHOST} in
                alpha*)
-                       test_opts+=(
+                       COMMON_TEST_SKIPS+=(
                                -x test_builtin
                                -x test_capi
                                -x test_cmath
@@ -269,30 +269,30 @@ src_configure() {
                        )
                        ;;
                ia64*)
-                       test_opts+=(
+                       COMMON_TEST_SKIPS+=(
                                -x test_ctypes
                                -x test_external_inspection
                        )
                        ;;
                mips*)
-                       test_opts+=(
+                       COMMON_TEST_SKIPS+=(
                                -x test_ctypes
                                -x test_external_inspection
                                -x test_statistics
                        )
                        ;;
                powerpc64-*) # big endian
-                       test_opts+=(
+                       COMMON_TEST_SKIPS+=(
                                -x test_descr
                        )
                        ;;
                riscv*)
-                       test_opts+=(
+                       COMMON_TEST_SKIPS+=(
                                -x test_urllib2
                        )
                        ;;
                sparc*)
-                       test_opts+=(
+                       COMMON_TEST_SKIPS+=(
                                # bug 788022
                                -x test_multiprocessing_fork
                                -x test_multiprocessing_forkserver

Reply via email to