Skip to content

Commit b39d2c9

Browse files
committed
remove old grouping
1 parent 2682c53 commit b39d2c9

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

plugins/+ciplugins/+github/GitHubLogPlugin.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
methods (Access=protected)
55
function runTestClass(plugin, pluginData)
66
% Add GitHub workflow command for starting a test output group
7-
disp("::group::Class " + pluginData.Name);
7+
disp("::group::" + pluginData.Name);
88

99
% Invoke the superclass method
1010
runTestClass@matlab.unittest.plugins.TestRunnerPlugin(plugin, pluginData);

src/index.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,18 @@ async function run() {
3535
const command = "addpath('"+ pluginsPath +"');" + "import matlab.unittest.TestRunner; addpath(genpath('sample')); suite = testsuite(pwd, 'IncludeSubfolders', true); runner = TestRunner.withDefaultPlugins(); results = runner.run(suite); results = runner.run(suite); display(results); assertSuccess(results);";
3636
const startupOptions = core.getInput("startup-options").split(" ");
3737

38-
const helperScript = await core.group("Generate script", async () => {
38+
// const helperScript = await core.group("Generate script", async () => {
3939
const helperScript = await matlab.generateScript(workspaceDir, command);
4040
core.info("Successfully generated script");
41-
return helperScript;
42-
});
41+
// return helperScript;
42+
// });
4343

44-
await core.group("Run command", async () => {
44+
// await core.group("Run command", async () => {
4545
await matlab.runCommand(helperScript, platform, architecture, exec.exec, startupOptions).finally(() => {
46-
// buildSummary.processAndDisplayBuildSummary();
4746
const { testResults, stats } = testResultsSummary.getTestResults();
4847
testResultsSummary.writeSummary(testResults, stats);
4948
});
50-
});
49+
// });
5150
}
5251

5352
run().catch((e) => {

0 commit comments

Comments
 (0)