Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox committed Dec 18, 2024
1 parent fe5a07b commit 88a573a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,41 +19,47 @@ jobs:
include:
- mediawiki_version: '1.39'
smw_version: '4.2.0'
pf_version: '5.9'
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
coverage: false
experimental: false
- mediawiki_version: '1.39'
smw_version: dev-master
pf_version: '5.9'
php_version: 8.1
database_type: mysql
database_image: "mysql:8"
coverage: false
experimental: false
- mediawiki_version: '1.40'
smw_version: '4.2.0'
pf_version: '5.9'
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
coverage: true
experimental: false
- mediawiki_version: '1.41'
smw_version: dev-master
pf_version: '5.9'
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
coverage: false
experimental: false
- mediawiki_version: '1.42'
smw_version: dev-master
pf_version: '5.9'
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
coverage: false
experimental: false
- mediawiki_version: '1.43'
smw_version: dev-master
pf_version: '5.9'
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
Expand All @@ -63,6 +69,7 @@ jobs:
env:
MW_VERSION: ${{ matrix.mediawiki_version }}
SMW_VERSION: ${{ matrix.smw_version }}
PF_VERSION: ${{ matrix.pf_version }}
PHP_VERSION: ${{ matrix.php_version }}
DB_TYPE: ${{ matrix.database_type }}
DB_IMAGE: ${{ matrix.database_image }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @author FelixAba
*/
class ApiSemanticFormsSelectRequestProcessorTest
extends \PHPUnit_Framework_TestCase {
extends \PHPUnit\Framework\TestCase {

private $ApiSFSRP;

Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/ApiSemanticFormsSelectTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @author mwjames
*/
class ApiSemanticFormsSelectTest extends \PHPUnit_Framework_TestCase {
class ApiSemanticFormsSelectTest extends \PHPUnit\Framework\TestCase {

private $ApiSFS;
private $ApiMain;
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/OutputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @author mwjames
*/
class OutputTest extends \PHPUnit_Framework_TestCase {
class OutputTest extends \PHPUnit\Framework\TestCase {
private $data;

protected function setUp(): void {
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/SelectFieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @group semantic-forms-select
* @author FelixAba
*/
class SelectFieldTest extends \PHPUnit_Framework_TestCase {
class SelectFieldTest extends \PHPUnit\Framework\TestCase {
private $selectField;

private $other_args_query_parametrized = [ 'query' => '((Category:Building Complex))((Part Of Site::@@@@));?Display Title;format~list;sort~Display Title;sep~,;link~none;headers~hide;limit~500' ];
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/SemanticFormsSelectInputTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @author FelixAba
*/
class SemanticFormsSelectInputTest extends \PHPUnit_Framework_TestCase {
class SemanticFormsSelectInputTest extends \PHPUnit\Framework\TestCase {

private $SFSInput;

Expand Down

0 comments on commit 88a573a

Please sign in to comment.