Skip to content

Commit 1bc4d73

Browse files
committed
Github Action updates
- PHPUnit 11.4 compatible - Remove Oracle Database test for Moodle 5.0
1 parent f6c1b50 commit 1bc4d73

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ jobs:
9292
- { branch: MOODLE_311_STABLE, php: "8.0", database: mysql, suite: phpunit }
9393
- { branch: MOODLE_310_STABLE, php: "7.4", database: mysql, suite: phpunit }
9494
- { branch: MOODLE_39_STABLE, php: "7.4", database: mysql, suite: phpunit }
95-
- { branch: main, php: "8.3", database: oracle, suite: phpunit }
9695
- { branch: MOODLE_405_STABLE, php: "8.3", database: oracle, suite: phpunit }
9796
- { branch: MOODLE_404_STABLE, php: "8.3", database: oracle, suite: phpunit }
9897
- { branch: MOODLE_403_STABLE, php: "8.2", database: oracle, suite: phpunit }
@@ -195,7 +194,6 @@ jobs:
195194
- { branch: MOODLE_311_STABLE, php: "8.0", database: mysql, browser: chrome, suite: behat }
196195
- { branch: MOODLE_310_STABLE, php: "7.4", database: mysql, browser: firefox, suite: behat }
197196
- { branch: MOODLE_39_STABLE, php: "7.4", database: mysql, browser: chrome, suite: behat }
198-
- { branch: main, php: "8.3", database: oracle, browser: firefox, suite: behat }
199197
- { branch: MOODLE_405_STABLE, php: "8.3", database: oracle, browser: chrome, suite: behat }
200198
- { branch: MOODLE_404_STABLE, php: "8.3", database: oracle, browser: chrome, suite: behat }
201199
- { branch: MOODLE_403_STABLE, php: "8.2", database: oracle, browser: chrome, suite: behat }

tests/phpunit-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ then
1010
testcmd="bin/moodle-docker-compose exec -T webserver vendor/bin/phpunit --filter core_dml_testcase"
1111
elif [ "$SUITE" = "phpunit-full" ];
1212
then
13-
testcmd="bin/moodle-docker-compose exec -T webserver vendor/bin/phpunit --verbose"
13+
testcmd="bin/moodle-docker-compose exec -T webserver vendor/bin/phpunit"
1414
else
1515
echo "Error, unknown suite '$SUITE'"
1616
exit 1

0 commit comments

Comments
 (0)