diff --git a/tests/Connections/ConnectionTest.php b/tests/Connections/ConnectionTest.php index f3737477..e4235093 100644 --- a/tests/Connections/ConnectionTest.php +++ b/tests/Connections/ConnectionTest.php @@ -42,6 +42,7 @@ /** * @covers \OpenSearch\Connections\Connection * @group legacy + * @group Integration * * @deprecated in 2.4.0 and will be removed in 3.0.0. */ diff --git a/tests/GuzzleClientFactoryTest.php b/tests/GuzzleClientFactoryTest.php index 6cc6bc08..f054d0d0 100644 --- a/tests/GuzzleClientFactoryTest.php +++ b/tests/GuzzleClientFactoryTest.php @@ -10,6 +10,8 @@ /** * @coversDefaultClass \OpenSearch\GuzzleClientFactory + * + * @group integration */ class GuzzleClientFactoryTest extends TestCase { diff --git a/tests/SymfonyClientFactoryTest.php b/tests/SymfonyClientFactoryTest.php index 7b669c8e..acd907b0 100644 --- a/tests/SymfonyClientFactoryTest.php +++ b/tests/SymfonyClientFactoryTest.php @@ -10,6 +10,7 @@ /** * @coversDefaultClass \OpenSearch\SymfonyClientFactory + * @group Integration */ class SymfonyClientFactoryTest extends TestCase { @@ -21,7 +22,7 @@ public function testCreate(): void { $factory = new SymfonyClientFactory(); $client = $factory->create([ - 'base_uri' => 'https://localhost:9200', + 'base_uri' => 'http://localhost:9200', 'auth_basic' => ['admin', 'password'], 'verify_peer' => false, ]); @@ -36,7 +37,7 @@ public function testLegacyOptions(): void { $factory = new SymfonyClientFactory(); $client = $factory->create([ - 'base_uri' => 'https://localhost:9200', + 'base_uri' => 'http://localhost:9200', 'auth_basic' => ['admin', 'password'], 'verify_peer' => false, ]);