Skip to content

Commit 2c68e65

Browse files
committed
fix(phpunit): migrate from deprecated syntax for PHPUnit 11.1
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
1 parent e01440a commit 2c68e65

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/phpunit-32bits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
- name: PHPUnit
5757
uses: docker://ghcr.io/nextcloud/continuous-integration-php8.4-32bit:latest
5858
with:
59-
args: /bin/sh -c "composer run test -- --exclude-group PRIMARY-azure,PRIMARY-s3,PRIMARY-swift,Memcached,Redis,RoutingWeirdness"
59+
args: /bin/sh -c "composer run test -- --exclude-group PRIMARY-azure --exclude-group PRIMARY-s3 --exclude-group PRIMARY-swift --exclude-group Memcached --exclude-group Redis --exclude-group RoutingWeirdness"

autotest.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,13 +371,13 @@ function execute_tests {
371371
fi
372372
GROUP=''
373373
if [ "$TEST_SELECTION" == "QUICKDB" ]; then
374-
GROUP='--group DB --exclude-group=SLOWDB'
374+
GROUP='--group DB --exclude-group SLOWDB'
375375
fi
376376
if [ "$TEST_SELECTION" == "DB" ]; then
377-
GROUP='--group DB,SLOWDB'
377+
GROUP='--group DB --group SLOWDB'
378378
fi
379379
if [ "$TEST_SELECTION" == "NODB" ]; then
380-
GROUP='--exclude-group DB,SLOWDB'
380+
GROUP='--exclude-group DB --exclude-group SLOWDB'
381381
fi
382382
if [ "$TEST_SELECTION" == "PRIMARY-s3" ]; then
383383
GROUP='--group PRIMARY-s3'

0 commit comments

Comments
 (0)