File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 22
33import * as testResultsSummary from "./testResultsSummary" ;
44import * as buildSummary from "./buildSummary" ;
5+ import * as matlab from "./matlab" ;
56
6- export { testResultsSummary , buildSummary } ;
7+ export { testResultsSummary , buildSummary , matlab } ;
Original file line number Diff line number Diff line change @@ -219,17 +219,17 @@ export function getTestResults(
219219
220220 try {
221221 const fs = require ( 'fs' ) ;
222- console . log ( `Contents of runnerTemp directory (${ runnerTemp } ):` ) ;
222+ core . info ( `Contents of runnerTemp directory (${ runnerTemp } ):` ) ;
223223 const files = fs . readdirSync ( runnerTemp ) ;
224224 files . forEach ( ( file : string ) => {
225225 const filePath = path . join ( runnerTemp , file ) ;
226226 const stats = fs . statSync ( filePath ) ;
227- console . log ( `- ${ file } (${ stats . isDirectory ( ) ? 'directory' : 'file' } , ${ stats . size } bytes)` ) ;
227+ core . info ( `- ${ file } (${ stats . isDirectory ( ) ? 'directory' : 'file' } , ${ stats . size } bytes)` ) ;
228228 } ) ;
229229 } catch ( listError ) {
230- console . error ( `Error listing files in runnerTemp directory: ${ listError } ` ) ;
230+ core . info ( `Error listing files in runnerTemp directory: ${ listError } ` ) ;
231231 }
232-
232+
233233 if ( existsSync ( resultsPath ) ) {
234234 try {
235235 const testArtifact = JSON . parse ( readFileSync ( resultsPath , "utf8" ) ) ;
You can’t perform that action at this time.
0 commit comments