@@ -33,7 +33,7 @@ public class ProxyTests extends BaseIntegrationTest{
3333 ToxiproxyClient toxiproxyClient = null ;
3434 Proxy proxy = null ;
3535
36- @ BeforeMethod (groups = { "integration" }, enabled = true )
36+ @ BeforeMethod (groups = { "integration" }, enabled = false )
3737 public void setUp () throws IOException {
3838 ClickHouseNode node = getServer (ClickHouseProtocol .HTTP );
3939 toxiproxy = new ToxiproxyContainer (ClickHouseServerForTest .getProxyImage ())
@@ -54,7 +54,7 @@ public void setUp() throws IOException {
5454 .build ();
5555 }
5656
57- @ AfterMethod (groups = { "integration" }, enabled = true )
57+ @ AfterMethod (groups = { "integration" }, enabled = false )
5858 public void teardown () {
5959 if (toxiproxy != null ) {
6060 toxiproxy .stop ();
@@ -70,7 +70,7 @@ private void createTable(String tableQuery) throws ClickHouseException {
7070 }
7171
7272
73- @ Test (groups = { "integration" }, enabled = true )
73+ @ Test (groups = { "integration" }, enabled = false )
7474 public void simpleProxyTest () throws Exception {
7575 String tableName = "simple_pojo_enable_proxy_table" ;
7676 String createSQL = SamplePOJO .generateTableCreateSQL (tableName );
@@ -93,7 +93,7 @@ public void simpleProxyTest() throws Exception {
9393 assertTrue (metrics .getMetric (ClientMetrics .OP_SERIALIZATION ).getLong () > 0 );
9494 }
9595
96- @ Test (groups = { "integration" }, enabled = true )
96+ @ Test (groups = { "integration" }, enabled = false )
9797 public void simpleDisabledProxyTest () throws Exception {
9898 String tableName = "simple_pojo_disable_proxy_table" ;
9999 String createSQL = SamplePOJO .generateTableCreateSQL (tableName );
0 commit comments