Skip to content

Commit 1c4c1a4

Browse files
authored
Merge pull request #316 from HuongNV13/support_python_mlbackend
Support Python Machine learning backend
2 parents f0f774f + 1bc4d73 commit 1c4c1a4

8 files changed

+26
-3
lines changed

.github/workflows/ci.yml

-2
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 }

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ When you change them, use `bin/moodle-docker-compose down && bin/moodle-docker-c
221221
| `MOODLE_DOCKER_PHPUNIT_EXTERNAL_SERVICES` | no | any value | not set | If set, dependencies for memcached, redis, solr, and openldap are added |
222222
| `MOODLE_DOCKER_BBB_MOCK` | no | any value | not set | If set the BigBlueButton mock image is started and configured |
223223
| `MOODLE_DOCKER_MATRIX_MOCK` | no | any value | not set | If set the Matrix mock image is started and configured |
224+
| `MOODLE_DOCKER_MLBACKEND` | no | any value | not set | If set the Python Machine Learning image is started and configured |
224225
| `MOODLE_DOCKER_BEHAT_FAILDUMP` | no | Path on your file system | not set | Behat faildumps are already available at http://localhost:8000/_/faildumps/ by default, this allows for mapping a specific filesystem folder to retrieve the faildumps in bulk / automated ways |
225226
| `MOODLE_DOCKER_DB_PORT` | no | any integer value | none | If you want to bind to any host IP different from the default 127.0.0.1, you can specify it with the bind_ip:port format (0.0.0.0 means bind to all). Username is "moodle" (or "sa" for mssql) and password is "m@0dl3ing". |
226227
| `MOODLE_DOCKER_WEB_HOST` | no | any valid hostname | localhost | The hostname for web |

bin/moodle-docker-compose

+6
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,12 @@ then
203203
dockercompose="${dockercompose} -f ${basedir}/matrix-mock.yml"
204204
fi
205205

206+
# Machine Learning backend
207+
if [[ ! -z "$MOODLE_DOCKER_MLBACKEND" ]];
208+
then
209+
dockercompose="${dockercompose} -f ${basedir}/mlbackend.yml"
210+
fi
211+
206212
# Faildump directory
207213
if [[ ! -z "$MOODLE_DOCKER_BEHAT_FAILDUMP" ]];
208214
then

bin/moodle-docker-compose.cmd

+4
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ IF NOT "%MOODLE_DOCKER_MATRIX_MOCK%"=="" (
140140
SET DOCKERCOMPOSE=%DOCKERCOMPOSE% -f "%BASEDIR%\matrix-mock.yml"
141141
)
142142

143+
IF NOT "%MOODLE_DOCKER_MLBACKEND%"=="" (
144+
SET DOCKERCOMPOSE=%DOCKERCOMPOSE% -f "%BASEDIR%\mlbackend.yml"
145+
)
146+
143147
IF NOT "%MOODLE_DOCKER_BEHAT_FAILDUMP%"=="" (
144148
IF NOT EXIST "%MOODLE_DOCKER_BEHAT_FAILDUMP%" (
145149
ECHO Error: MOODLE_DOCKER_BEHAT_FAILDUMP is not an existing directory

config.docker-template.php

+7
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,11 @@
139139
define('TEST_COMMUNICATION_MATRIX_MOCK_SERVER', "http://matrixmock/{$mockhash}");
140140
}
141141

142+
if (getenv('MOODLE_DOCKER_MLBACKEND')) {
143+
define('TEST_MLBACKEND_PYTHON_HOST', 'mlbackendpython');
144+
define('TEST_MLBACKEND_PYTHON_PORT', 5000);
145+
define('TEST_MLBACKEND_PYTHON_USERNAME', 'default');
146+
define('TEST_MLBACKEND_PYTHON_PASSWORD', 'sshhhh');
147+
}
148+
142149
require_once(__DIR__ . '/lib/setup.php');

mlbackend.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
services:
2+
webserver:
3+
environment:
4+
MOODLE_DOCKER_MLBACKEND: "true"
5+
mlbackendpython:
6+
image: moodlehq/moodle-mlbackend-python:3.0.5-python3.7.5

tests/phpunit-setup.sh

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ then
1010
elif [ "$SUITE" = "phpunit-full" ];
1111
then
1212
export MOODLE_DOCKER_PHPUNIT_EXTERNAL_SERVICES=true
13+
export MOODLE_DOCKER_MLBACKEND=true
1314
initcmd="bin/moodle-docker-compose exec -T webserver php admin/tool/phpunit/cli/init.php"
1415
else
1516
echo "Error, unknown suite '$SUITE'"

tests/phpunit-test.sh

+1-1
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)