Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Fix default handling of pipeline_perf --test argument
argparse's `action="append"` interacts unexpectedly with default arguments, in the sense that it will _always_ include the default arguments in the resulting list, and then appends any actually specified argument to the default list. This meant that doing something like `.buildkite/pipeline_perf.py --test memory-overhead` will first cause steps for _every_ performance test be added, and then another copy of the memory overhead step. (cherry picked from commit 959ecdd) Signed-off-by: Patrick Roy <[email protected]>
- Loading branch information