From be0697f0aaaa32baa5a3d861a183a3b6fd181436 Mon Sep 17 00:00:00 2001 From: Jason Montleon Date: Wed, 31 Jul 2024 01:09:09 -0400 Subject: [PATCH] Disable some tests for riscv64 Signed-off-by: Jason Montleon --- python-psycopg3.spec | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/python-psycopg3.spec b/python-psycopg3.spec index 15cc70c..609c21d 100644 --- a/python-psycopg3.spec +++ b/python-psycopg3.spec @@ -20,7 +20,7 @@ Name: python-%{src_name} Version: 3.2.1 -Release: 3%{?dist} +Release: 3.0.riscv64%{?dist} Summary: Psycopg 3 is a modern implementation of a PostgreSQL adapter for Python License: LGPL-3.0-only @@ -138,7 +138,12 @@ export PGTESTS_LOCALE=C.UTF-8 export PSYCOPG_TEST_DSN="host=$PGHOST port=$PGPORT dbname=${PGTESTS_DATABASES##*:} sslmode=disable" # Remove tests that need to use internet or specific settings +# Disable test_concurrency.py test_concurrency_async.py test_psycopg_dbapi20.py for riscv64 +# https://github.com/psycopg/psycopg/issues/883 %pytest tests/ -k "not (\ + test_concurrency.py or \ + test_concurrency_async.py or \ + test_psycopg_dbapi20.py or \ test_typing or \ test_module or \ test_conninfo_attempts_async or \ @@ -186,6 +191,9 @@ export PSYCOPG_TEST_DSN="host=$PGHOST port=$PGPORT dbname=${PGTESTS_DATABASES##* %endif %changelog +* Tue Jul 30 2024 Jason Montleon - 3.2.1-3.0.riscv64 +- Added specific tests to skip for riscv64 + * Tue Jul 30 2024 Ondrej Sloup - 3.2.1-3 - Added specific tests to skip (test_pipeline) as it fails on s390x (rhbz#2301198)