Skip to content

Commit

Permalink
[7.17] Fix FTR CLI include and exclude flag help text (#157207)
Browse files Browse the repository at this point in the history
## Summary

Fixes #142646 to align FTR CLI include and exclude flag help text with
`8.x`. The original fix in #86971 had a bad backport into `7.x` in PR
#86976.
  • Loading branch information
Ikuni17 committed May 9, 2023
1 parent 13f1a94 commit 068dfe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/kbn-test/src/functional_test_runner/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,15 +150,15 @@ export function runFtrCli() {
--grep <pattern> pattern used to select which tests to run
--invert invert grep to exclude tests
--es-version the elasticsearch version, formatted as "x.y.z"
--include=file a test file to be included, pass multiple times for multiple files
--exclude=file a test file to be excluded, pass multiple times for multiple files
--include-tag=tag a tag to be included, pass multiple times for multiple tags. Only
suites which have one of the passed include-tag tags will be executed.
When combined with the --exclude-tag flag both conditions must be met
for a suite to run.
--exclude-tag=tag a tag to be excluded, pass multiple times for multiple tags. Any suite
which has any of the exclude-tags will be excluded. When combined with
the --include-tag flag both conditions must be met for a suite to run.
--include-tag=tag a tag to be included, pass multiple times for multiple tags
--exclude-tag=tag a tag to be excluded, pass multiple times for multiple tags
--test-stats print the number of tests (included and excluded) to STDERR
--updateBaselines replace baseline screenshots with whatever is generated from the test
--updateSnapshots replace inline and file snapshots with whatever is generated from the test
Expand Down

0 comments on commit 068dfe5

Please sign in to comment.