File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ const testFiles: TestFile[] = [
31
31
sqlFileName : 'select.sql' ,
32
32
loopTimes : 3 ,
33
33
testTypes : [ 'validate' , 'getAllTokens' ] ,
34
- excludes : [ 'plsql' , 'postgresql' ] ,
35
34
} ,
36
35
{
37
36
name : 'Select All Entities' ,
@@ -45,7 +44,6 @@ const testFiles: TestFile[] = [
45
44
sqlFileName : 'create.sql' ,
46
45
loopTimes : 3 ,
47
46
testTypes : [ 'validate' , 'getAllTokens' ] ,
48
- excludes : [ 'plsql' , 'postgresql' ] ,
49
47
} ,
50
48
] ;
51
49
Original file line number Diff line number Diff line change @@ -208,6 +208,11 @@ class SqlBenchmark {
208
208
) ;
209
209
const currentVersion = require ( '../package.json' ) . version ;
210
210
const parsedEnvInfo = JSON . parse ( envInfo ) ;
211
+
212
+ if ( ! fs . existsSync ( path . join ( __dirname , `./reports` ) ) ) {
213
+ fs . mkdirSync ( path . join ( __dirname , `./reports` ) , { recursive : true } ) ;
214
+ }
215
+
211
216
const writePath = path . join ( __dirname , `./reports/${ this . language } .benchmark.md` ) ;
212
217
const writter = new MarkdownWritter ( writePath ) ;
213
218
writter . writeHeader ( 'Benchmark' , 2 ) ;
You can’t perform that action at this time.
0 commit comments