Skip to content

Commit

Permalink
Comment out extra disp(T) and use version('-release')
Browse files Browse the repository at this point in the history
  • Loading branch information
eszmw committed Feb 15, 2024
1 parent 382c819 commit 3dec69b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions SoftwareTests/RunAllTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ function RunAllTest(EnableReport,ReportFolder)

if EnableReport
web(fullfile(Folder,"index.html"))
else
T = table(Results);
disp(newline + "Test summary:")
disp(T)
% else
% T = table(Results);
% disp(newline + "Test summary:")
% disp(T)
end

% Format the results in a table and save them
ResultsTable = table(Results')
writetable(ResultsTable,fullfile("SoftwareTests","TestResults_"+release_version+".txt"));
writetable(ResultsTable,fullfile("SoftwareTests","TestResults_R"+version("-release")+".txt"));

% Assert success of test
assertSuccess(Results);
Expand Down

0 comments on commit 3dec69b

Please sign in to comment.