From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH 1/6] tests: fix missing modules under TEST_RUN_MODE=0
Date: Fri, 15 Nov 2024 02:59:27 +0000 [thread overview]
Message-ID: <20241115025932.1647240-2-e@80x24.org> (raw)
In-Reply-To: <20241115025932.1647240-1-e@80x24.org>
By default, we rely heavily on preload to speed up tests and
missing modules were always present by the time we hit some
tests. However, the more realistic (and significantly slower)
TEST_RUN_MODE=0 doesn't preload so we must explicitly load
missing modules.
---
t/extsearch.t | 1 +
t/www_static.t | 1 +
2 files changed, 2 insertions(+)
diff --git a/t/extsearch.t b/t/extsearch.t
index 28c43763..1a212bc8 100644
--- a/t/extsearch.t
+++ b/t/extsearch.t
@@ -609,6 +609,7 @@ if ('indexheader support') {
$es = PublicInbox::Config->new($cfg_path)->ALL;
my $mset = $es->mset('xarchiveshash:deadbeefcafe');
is $mset->size, 1, 'extindex.*.indexheader works';
+ require PublicInbox::XapClient;
local $PublicInbox::Search::XHC =
PublicInbox::XapClient::start_helper('-j0') or
xbail "no XHC: $@";
diff --git a/t/www_static.t b/t/www_static.t
index 8fb86a82..e258be1c 100644
--- a/t/www_static.t
+++ b/t/www_static.t
@@ -16,6 +16,7 @@ my $psgi_env = sub { # @_ is passed to WwwStatic->new
write_file '>', $ret, <<EOM;
use v5.12;
use Plack::Builder;
+use PublicInbox::WwwStatic;
my \$ws = PublicInbox::WwwStatic->new(docroot => "$tmpdir" @_);
builder { sub { \$ws->call(shift) } }
EOM
next prev parent reply other threads:[~2024-11-15 2:59 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-15 2:59 [PATCH 0/6] a few random small fixes and improvements Eric Wong
2024-11-15 2:59 ` Eric Wong [this message]
2024-11-15 2:59 ` [PATCH 2/6] test_common: disable fsync in git(1) commands Eric Wong
2024-11-15 2:59 ` [PATCH 3/6] nntp: improve protocol error messages Eric Wong
2024-11-15 2:59 ` [PATCH 4/6] nntp: integerize {article} to save memory Eric Wong
2024-11-15 2:59 ` [PATCH 5/6] view: reduce ops for <b> encasement Eric Wong
2024-11-15 2:59 ` [PATCH 6/6] view: fix obfuscation in message/* attachments Eric Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://public-inbox.org/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241115025932.1647240-2-e@80x24.org \
--to=e@80x24.org \
--cc=meta@public-inbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).