File tree Expand file tree Collapse file tree 3 files changed +18
-13
lines changed
e2e/cli-e2e/tests/__snapshots__ Expand file tree Collapse file tree 3 files changed +18
-13
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,14 @@ Global Options:
3636 -p, --onlyPlugins List of plugins to run. If not set all plugins are run.
3737 [array] [default: []]
3838
39+ Cache Options:
40+ --cache Cache runner outputs (both read and write)
41+ [boolean]
42+ --cache.read Read runner-output.json from file system
43+ [boolean]
44+ --cache.write Write runner-output.json to file system
45+ [boolean]
46+
3947Persist Options:
4048 --persist.outputDir Directory for the produced reports
4149 [string]
@@ -56,14 +64,8 @@ Upload Options:
5664 [string]
5765
5866Options:
59- --version Show version [boolean]
60- --cache Cache runner outputs (both read and write)
61- [boolean]
62- --cache.read Read runner-output.json to file system
63- [boolean]
64- --cache.write Write runner-output.json to file system
65- [boolean]
66- -h, --help Show help [boolean]
67+ --version Show version [boolean]
68+ -h, --help Show help [boolean]
6769
6870Examples:
6971 code-pushup Run collect followed by upload based
Original file line number Diff line number Diff line change 11import {
2+ yargsCacheConfigOptionsDefinition ,
23 yargsCoreConfigOptionsDefinition ,
34 yargsPersistConfigOptionsDefinition ,
45 yargsUploadConfigOptionsDefinition ,
@@ -17,6 +18,7 @@ export const groups = {
1718 ...Object . keys ( yargsGlobalOptionsDefinition ( ) ) ,
1819 ...Object . keys ( yargsFilterOptionsDefinition ( ) ) ,
1920 ] ,
21+ 'Cache Options:' : Object . keys ( yargsCacheConfigOptionsDefinition ( ) ) ,
2022 'Persist Options:' : Object . keys ( yargsPersistConfigOptionsDefinition ( ) ) ,
2123 'Upload Options:' : Object . keys ( yargsUploadConfigOptionsDefinition ( ) ) ,
2224} ;
Original file line number Diff line number Diff line change @@ -1258,11 +1258,12 @@ _Enum, one of the following possible values:_
12581258
12591259_ Object containing the following properties:_
12601260
1261- | Property | Description | Type |
1262- | :---------- | :-------------------------------------- | :--------------------------------- |
1263- | ` outputDir ` | Artifacts folder | [ FilePath] ( #filepath ) |
1264- | ` filename ` | Artifacts file name (without extension) | [ FileName] ( #filename ) |
1265- | ` format ` | | _ Array of [ Format] ( #format ) items_ |
1261+ | Property | Description | Type |
1262+ | :------------ | :-------------------------------------- | :--------------------------------- |
1263+ | ` outputDir ` | Artifacts folder | [ FilePath] ( #filepath ) |
1264+ | ` filename ` | Artifacts file name (without extension) | [ FileName] ( #filename ) |
1265+ | ` format ` | | _ Array of [ Format] ( #format ) items_ |
1266+ | ` skipReports ` | | ` boolean ` |
12661267
12671268_ All properties are optional._
12681269
You can’t perform that action at this time.
0 commit comments