File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -216,31 +216,31 @@ public class RetestSettings : CommandSettings
216
216
#region trx
217
217
218
218
[ Description ( "Include test output in report" ) ]
219
- [ CommandOption ( "--trx- output" ) ]
219
+ [ CommandOption ( "--output" ) ]
220
220
[ DefaultValue ( false ) ]
221
221
public bool Output { get ; init ; }
222
222
223
223
/// <summary>
224
224
/// Whether to include skipped tests in the output.
225
225
/// </summary>
226
226
[ Description ( "Include skipped tests in report" ) ]
227
- [ CommandOption ( "--trx- skipped" ) ]
227
+ [ CommandOption ( "--skipped" ) ]
228
228
[ DefaultValue ( true ) ]
229
229
public bool Skipped { get ; init ; } = true ;
230
230
231
231
/// <summary>
232
232
/// Report as GitHub PR comment.
233
233
/// </summary>
234
234
[ Description ( "Report as GitHub PR comment" ) ]
235
- [ CommandOption ( "--trx- gh-comment" ) ]
235
+ [ CommandOption ( "--gh-comment" ) ]
236
236
[ DefaultValue ( true ) ]
237
237
public bool GitHubComment { get ; init ; } = true ;
238
238
239
239
/// <summary>
240
240
/// Report as GitHub PR comment.
241
241
/// </summary>
242
242
[ Description ( "Report as GitHub step summary" ) ]
243
- [ CommandOption ( "--trx- gh-summary" ) ]
243
+ [ CommandOption ( "--gh-summary" ) ]
244
244
[ DefaultValue ( true ) ]
245
245
public bool GitHubSummary { get ; init ; } = true ;
246
246
Original file line number Diff line number Diff line change 3
3
dotnet retest [OPTIONS] [-- [dotnet test options]]
4
4
5
5
OPTIONS:
6
- DEFAULT
7
- -h , --help Prints help information
8
- -v, --version Prints version information
9
- --attempts 5 Maximum attempts to run tests
10
- --trx- output Include test output in report
11
- --trx- skipped True Include skipped tests in report
12
- --trx- gh-comment True Report as GitHub PR comment
13
- --trx- gh-summary True Report as GitHub step summary
6
+ DEFAULT
7
+ -h , --help Prints help information
8
+ -v, --version Prints version information
9
+ --attempts 5 Maximum attempts to run tests
10
+ --output Include test output in report
11
+ --skipped True Include skipped tests in report
12
+ --gh-comment True Report as GitHub PR comment
13
+ --gh-summary True Report as GitHub step summary
14
14
` ` `
You can’t perform that action at this time.
0 commit comments