Skip to content

Commit 63a5f83

Browse files
committed
Skip test if DBAL is missing
1 parent 6ec49dc commit 63a5f83

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/DependencyInjection/Compiler/DbalTracingPassTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ public function processDoesNothingIfConditionsForEnablingTracingAreMissingDataPr
160160

161161
public function testContainerCompilationFailsIfConnectionDoesntExist(): void
162162
{
163+
if (!self::isDoctrineDBALInstalled()) {
164+
$this->markTestSkipped('This test requires the "doctrine/dbal" Composer package.');
165+
}
166+
163167
$container = $this->createContainerBuilder();
164168
$container->setParameter('sentry.tracing.dbal.connections', ['missing']);
165169

0 commit comments

Comments
 (0)