diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-03-16 10:15:26 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-03-16 14:50:02 +0200 |
| commit | 642bd77cecaadedd7abd2e5299fc61c1e8a638fb (patch) | |
| tree | b20c8d1a4472673462b12edb26f5dc6edaf18cfa | |
| parent | b41fce9fa8196123dd1820fa48761b081b0583b2 (diff) | |
gnu: ruby-puma: Adjust the test suite.
* gnu/packages/ruby.scm (ruby-puma)[arguments]: Adjust the
'disable-problematic-tests phase to skip tests which fail after the
openssl certificate expired.
Change-Id: I929918c01c26adae09c671b0166f6773e3a57f6a
| -rw-r--r-- | gnu/packages/ruby.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index bb4903958fe..24407fbd58a 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2015, 2016, 2017 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2017 Nikita <nikita@n0.is> ;;; Copyright © 2017, 2019-2022 Marius Bakke <marius@gnu.org> -;;; Copyright © 2017-2024 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2017-2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2017, 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2017, 2018, 2019 Christopher Baines <mail@cbaines.net> @@ -12797,7 +12797,14 @@ part of the Prawn PDF generator.") "test_culling_strategy_oldest_fork_worker" "test_usr1_fork_worker") (skip-tests "test/test_integration_pumactl.rb" - "test_refork_cluster")))) + "test_refork_cluster") + ;; The Openssl certificate has expired, causing these tests to fail. + (skip-tests "test/test_puma_server_ssl.rb" + "test_verify_fail_if_client_expired_cert" + "test_verify_client_cert" + "test_server_ssl_with_cert_pem_and_key_pem") + (skip-tests "test/test_integration_ssl.rb" + "test_ssl_run_with_curl_client")))) (add-before 'check 'relax-test-case-timeout (lambda _ ;; The default value is 45 s and easily causes timeouts. |
