Skip to content

Commit

Permalink
Don't try to fix predis in this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
PROFeNoM committed Jan 17, 2025
1 parent f412b76 commit 879dd85
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 25 deletions.
11 changes: 0 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,6 @@ TEST_INTEGRATIONS_70 := \
test_integrations_phpredis3 \
test_integrations_phpredis4 \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_sqlsrv

Expand Down Expand Up @@ -604,7 +603,6 @@ TEST_INTEGRATIONS_71 := \
test_integrations_phpredis3 \
test_integrations_phpredis4 \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_sqlsrv \
test_opentracing_10
Expand Down Expand Up @@ -659,7 +657,6 @@ TEST_INTEGRATIONS_72 := \
test_integrations_phpredis3 \
test_integrations_phpredis4 \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_sqlsrv \
test_opentracing_10
Expand Down Expand Up @@ -719,7 +716,6 @@ TEST_INTEGRATIONS_73 :=\
test_integrations_phpredis3 \
test_integrations_phpredis4 \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_sqlsrv \
test_opentracing_10
Expand Down Expand Up @@ -780,7 +776,6 @@ TEST_INTEGRATIONS_74 := \
test_integrations_phpredis3 \
test_integrations_phpredis4 \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_roadrunner \
test_integrations_sqlsrv \
Expand Down Expand Up @@ -846,7 +841,6 @@ TEST_INTEGRATIONS_80 := \
test_integrations_guzzle_latest \
test_integrations_pcntl \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_sqlsrv \
test_integrations_swoole_5 \
Expand Down Expand Up @@ -901,7 +895,6 @@ TEST_INTEGRATIONS_81 := \
test_integrations_pdo \
test_integrations_elasticsearch7 \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_sqlsrv \
test_integrations_swoole_5 \
Expand Down Expand Up @@ -958,7 +951,6 @@ TEST_INTEGRATIONS_82 := \
test_integrations_elasticsearch7 \
test_integrations_elasticsearch_latest \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_frankenphp \
test_integrations_roadrunner \
Expand Down Expand Up @@ -1022,7 +1014,6 @@ TEST_INTEGRATIONS_83 := \
test_integrations_elasticsearch7 \
test_integrations_elasticsearch_latest \
test_integrations_phpredis5 \
test_integrations_predis_1 \
test_integrations_predis_latest \
test_integrations_frankenphp \
test_integrations_roadrunner \
Expand Down Expand Up @@ -1290,8 +1281,6 @@ test_integrations_phpredis5: global_test_run_dependencies
$(call run_tests_debug,tests/Integrations/PHPRedis/V5)
$(eval TEST_EXTRA_INI=)
$(eval TEST_EXTRA_ENV=)
test_integrations_predis_1: global_test_run_dependencies tests/Integrations/Predis/V1/composer.lock-php$(PHP_MAJOR_MINOR)
$(call run_tests_debug,tests/Integrations/Predis/V1)
test_integrations_predis_latest: global_test_run_dependencies tests/Integrations/Predis/Latest/composer.lock-php$(PHP_MAJOR_MINOR)
$(call run_tests_debug,tests/Integrations/Predis/Latest)
test_integrations_frankenphp: global_test_run_dependencies
Expand Down
2 changes: 1 addition & 1 deletion tests/Integrations/Predis/Latest/PredisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public function testPredisClusterConnect()
$connectionString = "tcp://{$this->host}";

$traces = $this->isolateTracer(function () use ($connectionString) {
$client = new \Predis\Client([$connectionString, $connectionString, $connectionString], ['cluster' => 'redis']);
$client = new \Predis\Client([$connectionString, $connectionString, $connectionString]);
$client->connect();
});

Expand Down
2 changes: 1 addition & 1 deletion tests/Integrations/Predis/Latest/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"predis/predis": "2.3.0"
"predis/predis": "1.1.10"
}
}
7 changes: 0 additions & 7 deletions tests/Integrations/Predis/V1/PredisTest.php

This file was deleted.

5 changes: 0 additions & 5 deletions tests/Integrations/Predis/V1/composer.json

This file was deleted.

0 comments on commit 879dd85

Please sign in to comment.