Skip to content

Commit

Permalink
Add CI for MW 1.42/43 (#75)
Browse files Browse the repository at this point in the history
* Add CI for MW 1.42/43

* Update I18nJsonFileIntegrityTest.php

* Update CompoundQueryProcessorTest.php

* Update CompoundQueryResultTest.php

* Update CompoundQueryTest.php
  • Loading branch information
paladox authored Feb 7, 2025
1 parent 7d91ecc commit 4eda342
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ jobs:
database_image: "mariadb:11.2"
coverage: false
experimental: false
- mediawiki_version: '1.42'
smw_version: dev-master
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
coverage: false
experimental: false
- mediawiki_version: '1.43'
smw_version: dev-master
php_version: 8.1
database_type: mysql
database_image: "mariadb:11.2"
coverage: false
experimental: false

env:
MW_VERSION: ${{ matrix.mediawiki_version }}
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Integration/I18nJsonFileIntegrityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*
* @author mwjames
*/
class I18nJsonFileIntegrityTest extends \PHPUnit_Framework_TestCase {
class I18nJsonFileIntegrityTest extends \PHPUnit\Framework\TestCase {

/**
* @dataProvider i18nFileProvider
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/Api/CompoundQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* @author Peter Grassberger < petertheone@gmail.com >
*/
class CompoundQueryTest extends \PHPUnit_Framework_TestCase {
class CompoundQueryTest extends \PHPUnit\Framework\TestCase {

/**
* @var MwApiFactory
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/CompoundQueryProcessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @author Peter Grassberger < petertheone@gmail.com >
*/
class CompoundQueryProcessorTest extends \PHPUnit_Framework_TestCase {
class CompoundQueryProcessorTest extends \PHPUnit\Framework\TestCase {

/**
* Call protected/private method of a class.
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/Unit/CompoundQueryResultTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @author Peter Grassberger < petertheone@gmail.com >
*/
class CompoundQueryResultTest extends \PHPUnit_Framework_TestCase {
class CompoundQueryResultTest extends \PHPUnit\Framework\TestCase {

private $store;
private $query;
Expand Down

0 comments on commit 4eda342

Please sign in to comment.