From 1d18127dd28d6cc86d6fa70885357f9e68370421 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Wed, 16 Apr 2025 16:23:44 +0200 Subject: [PATCH] test: Set PHPUNIT_RUN env var Signed-off-by: Christoph Wurst --- tests/bootstrap.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 920f8bc7..7457ae90 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -5,6 +5,8 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ +define('PHPUNIT_RUN', 1); + require_once __DIR__.'/../../../lib/base.php'; require_once __DIR__.'/../vendor/autoload.php';