Skip to content

Commit c5492b1

Browse files
committed
Modify CI
1 parent 312952d commit c5492b1

File tree

7 files changed

+6
-4
lines changed

7 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Run SmokeTests
3939
uses: matlab-actions/run-command@v2
4040
with:
41-
command: openProject(pwd); RunAllTests;
41+
command: openProject(pwd); RunAllTests(true);
4242

4343
# Upload the test results as artifact
4444
- name: Upload TestResults
@@ -48,6 +48,7 @@ jobs:
4848
path: ./SoftwareTests/TestResults_${{ matrix.MATLABVersion }}.txt
4949
overwrite: true
5050

51+
5152
badge:
5253
if: ${{ always() }}
5354
needs: [test]

SoftwareTests/PreFiles/PreAnalogToDigitalConversion.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
% Initialization script for AnalogToDigitalConversion.mlx
2+
OnSolution = true;
23
% ---- Known Issues -----
34
KnownIssuesID = "MATLAB:minrhs";
45
% ---- Pre-run commands -----

SoftwareTests/PreFiles/PreFilterDesign.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
% Initialization script for FilterDesign.mlx
2+
OnSolution = true;
23
% ---- Known Issues -----
34
KnownIssuesID = "MATLAB:minrhs";
45
% ---- Pre-run commands -----

SoftwareTests/PreFiles/PreFilteringIntro.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
% Initialization script for FilteringIntro.mlx
2+
OnSolution = true;
23
% ---- Known Issues -----
34
KnownIssuesID = "MATLAB:minrhs";
45
% ---- Pre-run commands -----

SoftwareTests/SmokeTests.m

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,7 @@ function SmokeRunSoln(testCase,File)
122122
try
123123
run(fullfile(testCase.RootFolder,"InstructorResources","Solutions",SolutionFile));
124124
catch ME
125-
if ~any(strcmp(ME.identifier,KnownIssuesID))
126-
rethrow(ME)
127-
end
125+
rethrow(ME)
128126
end
129127

130128
% Post-test:
-73.7 KB
Binary file not shown.

Utilities/FilteringIntroTest.mlx

-151 KB
Binary file not shown.

0 commit comments

Comments
 (0)