blob: 24f5b897181af88971e5410577bb7577221734d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
if (file_exists(__DIR__ . "/test_env.php")) {
include __DIR__ . '/test_env.php';
}
if (getenv('TEST_KAFKA_BROKERS')) {
return;
}
die('skip due to missing TEST_KAFKA_BROKERS environment & no test_env.php');
|