From 06d73671fe4ffaf7a6af86bf935ffa79ee4f23c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Sat, 30 Nov 2024 11:23:25 +0100 Subject: [PATCH] add install script to boostrap test --- tests/bootstrap.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 7056b81..a456c24 100755 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -103,6 +103,11 @@ function _manually_load_plugin() { $mec_factory->install(); } + if ( 'event_organiser' === $activitypub_event_bridge_integration_filter ) { + require_once $plugin_dir . 'event-organiser/includes/event-organiser-install.php'; + eventorganiser_install(); + } + // At last manually load our WordPress plugin. require dirname( __DIR__ ) . '/activitypub-event-bridge.php'; }