Skip to content

Commit

Permalink
Merge pull request #370 from SUSE/ruby_sqlite3
Browse files Browse the repository at this point in the history
Pin to a sqlite3 version that works with ruby 2.2 (bsc#1203692)
  • Loading branch information
dirkmueller authored Jan 4, 2024
2 parents 5b862c4 + e27d240 commit 07fb27a
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/test_ruby.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down

0 comments on commit 07fb27a

Please sign in to comment.