Skip to content

Commit e03c52f

Browse files
committed
Update file
1 parent d2cd614 commit e03c52f

File tree

2 files changed

+41
-41
lines changed

2 files changed

+41
-41
lines changed

AzureDevOps/DistributeTests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
We use JUnit style test results to publish the test reports.
1010
#>
1111

12-
$tests = Get-ChildItem .\ -Filter "test*" # search for test files with specific pattern.
12+
$tests = Get-ChildItem .\tests\ -File # search for test files with specific pattern.
1313
$totalAgents = [int]$Env:SYSTEM_TOTALJOBSINPHASE # standard VSTS variables available using parallel execution; total number of parallel jobs running
1414
$agentNumber = [int]$Env:SYSTEM_JOBPOSITIONINPHASE # current job position
1515
$testCount = $tests.Count

AzureDevOps/ParallelStrategy.yml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -22,48 +22,48 @@ jobs:
2222
env:
2323
MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
2424

25-
- job: ParallelLinux
26-
# Parallel strategy to run tests in parallel
27-
strategy:
28-
parallel: 2
29-
pool:
30-
vmImage: ubuntu-latest
31-
steps:
32-
# Install MATLAB and required products
33-
- task: InstallMATLAB@1
34-
inputs:
35-
release: R2025a
36-
products: MATLAB_Test Simulink_Test
25+
# - job: ParallelLinux
26+
# # Parallel strategy to run tests in parallel
27+
# strategy:
28+
# parallel: 2
29+
# pool:
30+
# vmImage: ubuntu-latest
31+
# steps:
32+
# # Install MATLAB and required products
33+
# - task: InstallMATLAB@1
34+
# inputs:
35+
# release: R2025a
36+
# products: MATLAB_Test Simulink_Test
3737

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

41-
- task: RunMATLABTests@1
42-
inputs:
43-
selectByName: $(MATLABTestFiles)
44-
sourceFolder: src
45-
env:
46-
MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
41+
# - task: RunMATLABTests@1
42+
# inputs:
43+
# selectByName: $(MATLABTestFiles)
44+
# sourceFolder: src
45+
# env:
46+
# MLM_LICENSE_TOKEN: $(MLM_LICENSE_TOKEN)
4747

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
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
6060

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

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

0 commit comments

Comments
 (0)