@@ -640,6 +640,7 @@ def test_search(self, opensearch_endpoint, opensearch_document_path):
640640 f"search unsuccessful({ response .status_code } ): { response .text } "
641641 )
642642
643+ @markers .requires_in_process
643644 @markers .aws .only_localstack
644645 def test_endpoint_strategy_path (self , monkeypatch , opensearch_create_domain , aws_client ):
645646 monkeypatch .setattr (config , "OPENSEARCH_ENDPOINT_STRATEGY" , "path" )
@@ -653,6 +654,7 @@ def test_endpoint_strategy_path(self, monkeypatch, opensearch_create_domain, aws
653654 endpoint = status ["Endpoint" ]
654655 assert endpoint .endswith (f"/{ domain_name } " )
655656
657+ @markers .requires_in_process
656658 @markers .aws .only_localstack
657659 def test_endpoint_strategy_port (self , monkeypatch , opensearch_create_domain , aws_client ):
658660 monkeypatch .setattr (config , "OPENSEARCH_ENDPOINT_STRATEGY" , "port" )
@@ -688,6 +690,7 @@ def test_cloudformation_deployment(self, deploy_cfn_template, aws_client):
688690
689691@markers .skip_offline
690692class TestEdgeProxiedOpensearchCluster :
693+ @markers .requires_in_process
691694 @markers .aws .only_localstack
692695 def test_route_through_edge (self ):
693696 cluster_id = f"domain-{ short_uid ()} "
@@ -784,6 +787,7 @@ def test_custom_endpoint_disabled(
784787
785788@markers .skip_offline
786789class TestMultiClusterManager :
790+ @markers .requires_in_process
787791 @markers .aws .only_localstack
788792 def test_multi_cluster (self , account_id , monkeypatch ):
789793 monkeypatch .setattr (config , "OPENSEARCH_ENDPOINT_STRATEGY" , "domain" )
@@ -832,6 +836,7 @@ def test_multi_cluster(self, account_id, monkeypatch):
832836
833837@markers .skip_offline
834838class TestMultiplexingClusterManager :
839+ @markers .requires_in_process
835840 @markers .aws .only_localstack
836841 def test_multiplexing_cluster (self , account_id , monkeypatch ):
837842 monkeypatch .setattr (config , "OPENSEARCH_ENDPOINT_STRATEGY" , "domain" )
@@ -880,6 +885,7 @@ def test_multiplexing_cluster(self, account_id, monkeypatch):
880885
881886@markers .skip_offline
882887class TestSingletonClusterManager :
888+ @markers .requires_in_process
883889 @markers .aws .only_localstack
884890 def test_endpoint_strategy_port_singleton_cluster (self , account_id , monkeypatch ):
885891 monkeypatch .setattr (config , "OPENSEARCH_ENDPOINT_STRATEGY" , "port" )
@@ -926,6 +932,7 @@ def test_endpoint_strategy_port_singleton_cluster(self, account_id, monkeypatch)
926932
927933@markers .skip_offline
928934class TestCustomBackendManager :
935+ @markers .requires_in_process
929936 @markers .aws .only_localstack
930937 def test_custom_backend (self , account_id , httpserver , monkeypatch ):
931938 monkeypatch .setattr (config , "OPENSEARCH_ENDPOINT_STRATEGY" , "domain" )
@@ -992,6 +999,7 @@ def test_custom_backend(self, account_id, httpserver, monkeypatch):
992999
9931000 httpserver .check ()
9941001
1002+ @markers .requires_in_process
9951003 @markers .aws .only_localstack
9961004 def test_custom_backend_with_custom_endpoint (
9971005 self ,
0 commit comments