From e27d240ad0b3ca4d1f52ce47405015d64c4faebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20M=C3=BCller?= Date: Thu, 4 Jan 2024 09:57:22 +0100 Subject: [PATCH] Pin to a sqlite3 version that works with ruby 2.2 (bsc#1203692) --- tests/test_ruby.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/test_ruby.py b/tests/test_ruby.py index 70e31803..38165696 100644 --- a/tests/test_ruby.py +++ b/tests/test_ruby.py @@ -9,12 +9,6 @@ CONTAINER_IMAGES = RUBY_CONTAINERS -_NON_X86_64_OR_AARCH64_SKIP = pytest.mark.skipif( - LOCALHOST.system_info.arch in ("x86_64", "aarch64"), - reason="The sqlite3 gem is not installable on x86_64 and aarch64, bsc#1203692", -) - - def test_ruby_version(auto_container): """Verify that the environment variable ``RUBY_VERSION`` and ``RUBY_MAJOR`` match the version of Ruby in the container. @@ -41,7 +35,7 @@ def test_lang_set(auto_container): "gem", [ "ffi", - pytest.param("sqlite3", marks=_NON_X86_64_OR_AARCH64_SKIP), + "sqlite3 -v 1.4.0", # bsc#1203692 "rspec-expectations", "diff-lcs", "rspec-mocks",