Open
Description
I have the circle ci yml file:
version: 2.1
orbs:
matlab: mathworks/matlab@dev:v1-rc
jobs:
build:
# environment:
# MATHWORKS_RMC_BASE_URL: https://mw-ci-static-dev.s3.amazonaws.com/run-matlab-command/v2
# MATHWORKS_LICENSING_ENDPOINT: stage
machine:
image: ubuntu-2204:2023.10.1
steps:
- checkout
- matlab/install:
release: R2023b
- matlab/run-command:
command: magic(3)
- matlab/run-tests:
source-folder: code
use-parallel: Yes
test-results-html: results.html
- matlab/run-build:
tasks: clean mtest
The build finished without error. But in the test log, I do not see it starts parallel pool, I also do not see the results.html is generated. There is no log shows the option does not work either.