Skip to content

Commit

Permalink
WIP fix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
srjlewis committed Nov 28, 2024
1 parent 43f70b7 commit 1434676
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testsv2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Setup Redis server
uses: zhulik/[email protected]
with:
redis version: '6'
redis version: '5'

- name: Validate composer.json and composer.lock
run: composer validate --strict
Expand Down
1 change: 1 addition & 0 deletions tests/cases/GetAllItems.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
require_once __DIR__ . '/../../vendor/autoload.php';

$testHelper = new TestHelper('Testing getAllItems() method');
$testHelper->printText('[<blue>EXTENTION:</blue> (redis) <yellow>v' . \phpversion('redis') . '</yellow>]');

/**
* https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV5%CB%96%5D-Fetching-all-keys
Expand Down
1 change: 1 addition & 0 deletions tests/cases/Redis.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
chdir(__DIR__);
require_once __DIR__ . '/../../vendor/autoload.php';
$testHelper = new TestHelper('Redis bundled client');
$testHelper->printText('[<blue>EXTENTION:</blue> (redis) <yellow>v' . \phpversion('redis') . '</yellow>]');

try {
if (!class_exists(RedisClient::class)) {
Expand Down
1 change: 1 addition & 0 deletions tests/cases/RedisCluster.test.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
chdir(__DIR__);
require_once __DIR__ . '/../../vendor/autoload.php';
$testHelper = new TestHelper('Redis cluster');
$testHelper->printText('[<blue>EXTENTION:</blue> (redis) <yellow>v' . \phpversion('redis') . '</yellow>]');

try {
$config = new RedisConfig();
Expand Down

0 comments on commit 1434676

Please sign in to comment.