Skip to content

Commit b1c0c8e

Browse files
committed
Update file
1 parent 1f07238 commit b1c0c8e

File tree

1 file changed

+48
-41
lines changed

1 file changed

+48
-41
lines changed

AzureDevOps/ParallelStrategy.yml

Lines changed: 48 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
jobs:
2-
- job: ParallelWindows
3-
# Parallel strategy to run tests in parallel
4-
strategy:
5-
parallel: 2
6-
pool:
7-
vmImage: windows-latest
8-
steps:
9-
# Install MATLAB and required products
10-
- task: InstallMATLAB@1
11-
inputs:
12-
release: R2025a
13-
products: MATLAB_Test Simulink_Test
2+
# - job: ParallelWindows
3+
# # Parallel strategy to run tests in parallel
4+
# strategy:
5+
# parallel: 2
6+
# pool:
7+
# vmImage: windows-latest
8+
# steps:
9+
# # Install MATLAB and required products
10+
# - task: InstallMATLAB@1
11+
# inputs:
12+
# release: R2025a
13+
# products: MATLAB_Test Simulink_Test
1414

15-
- powershell: .\AzureDevOps\DistributeTests.ps1
16-
displayName: 'PowerShell Script to distribute tests'
15+
# - powershell: .\AzureDevOps\DistributeTests.ps1
16+
# displayName: 'PowerShell Script to distribute tests'
1717

18-
- task: RunMATLABTests@1
19-
inputs:
20-
selectByName: $(MATLABTestFiles)
21-
sourceFolder: src
22-
env:
23-
MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
18+
# - task: RunMATLABTests@1
19+
# inputs:
20+
# selectByName: $(MATLABTestFiles)
21+
# sourceFolder: src
22+
# env:
23+
# MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
2424

2525
- job: ParallelLinux
2626
# Parallel strategy to run tests in parallel
@@ -33,37 +33,44 @@ jobs:
3333
- task: InstallMATLAB@1
3434
inputs:
3535
release: R2025a
36-
# products: MATLAB_Test Simulink_Test
36+
products: MATLAB_Test Simulink_Test
3737

3838
- bash: chmod +x ./AzureDevOps/DistributeTests.sh && ./AzureDevOps/DistributeTests.sh
3939
displayName: 'Bash Script to distribute tests'
4040

41+
# Builds Python package from MATLAB function and verifies functionality through equivalence tests
42+
- task: RunMATLABBuild@1
43+
inputs:
44+
tasks: equivalenceTest
45+
env:
46+
MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
47+
4148
- task: RunMATLABTests@1
4249
inputs:
4350
selectByName: $(MATLABTestFiles)
4451
sourceFolder: src
4552
env:
4653
MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
4754

48-
- job: ParallelMac
49-
# Parallel strategy to run tests in parallel
50-
strategy:
51-
parallel: 2
52-
pool:
53-
vmImage: macOS-latest
54-
steps:
55-
# Install MATLAB and required products
56-
- task: InstallMATLAB@1
57-
inputs:
58-
release: R2025a
59-
products: MATLAB_Test Simulink_Test
55+
# - job: ParallelMac
56+
# # Parallel strategy to run tests in parallel
57+
# strategy:
58+
# parallel: 2
59+
# pool:
60+
# vmImage: macOS-latest
61+
# steps:
62+
# # Install MATLAB and required products
63+
# - task: InstallMATLAB@1
64+
# inputs:
65+
# release: R2025a
66+
# products: MATLAB_Test Simulink_Test
6067

61-
- bash: chmod +x ./AzureDevOps/DistributeTests.sh && ./AzureDevOps/DistributeTests.sh
62-
displayName: 'Bash Script to distribute tests'
68+
# - bash: chmod +x ./AzureDevOps/DistributeTests.sh && ./AzureDevOps/DistributeTests.sh
69+
# displayName: 'Bash Script to distribute tests'
6370

64-
- task: RunMATLABTests@1
65-
inputs:
66-
selectByName: $(MATLABTestFiles)
67-
sourceFolder: src
68-
env:
69-
MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
71+
# - task: RunMATLABTests@1
72+
# inputs:
73+
# selectByName: $(MATLABTestFiles)
74+
# sourceFolder: src
75+
# env:
76+
# MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)

0 commit comments

Comments
 (0)