Skip to content

Commit eaecbf3

Browse files
committed
Remove legacy driver CI step and unused phpunit-config parameter
Remove the "Run PHPUnit tests for the legacy driver" step that ran root-level phpunit.xml.dist (now deleted). Also remove the unused phpunit-config input parameter and PHPUNIT_CONFIG env var that were only needed to switch between driver configs.
1 parent ac947c9 commit eaecbf3

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

.github/workflows/phpunit-tests-run.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,13 @@ on:
1212
description: 'The version of PHP to use, in the format of X.Y'
1313
required: true
1414
type: 'string'
15-
phpunit-config:
16-
description: 'The PHPUnit configuration file to use'
17-
required: false
18-
type: 'string'
19-
default: 'phpunit.xml.dist'
2015
sqlite:
2116
description: 'SQLite version to install (e.g., 3.24.0). Leave empty for latest version.'
2217
required: false
2318
type: 'string'
2419
default: 'latest'
2520
env:
2621
LOCAL_PHP: ${{ inputs.php }}-fpm
27-
PHPUNIT_CONFIG: ${{ inputs.phpunit-config }}
2822

2923
jobs:
3024
phpunit-tests:
@@ -88,6 +82,3 @@ jobs:
8882
- name: Run PHPUnit tests
8983
run: php ./vendor/bin/phpunit -c ./phpunit.xml.dist
9084
working-directory: packages/mysql-on-sqlite
91-
92-
- name: Run PHPUnit tests for the legacy driver
93-
run: php ./vendor/bin/phpunit -c ./phpunit.xml.dist

.github/workflows/phpunit-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ jobs:
4343
os: ${{ matrix.os }}
4444
php: ${{ matrix.php }}
4545
sqlite: ${{ matrix.sqlite || 'latest' }}
46-
phpunit-config: ${{ 'phpunit.xml.dist' }}

0 commit comments

Comments
 (0)