commit | a7c4c14493d9c20fb89daa5e094d6396a6cbe80d | [log] [tgz] |
---|---|---|
author | Tony Breeds <tony@bakeyournoodle.com> | Mon Mar 04 11:34:33 2019 +1100 |
committer | Tony Breeds <tony@bakeyournoodle.com> | Mon Mar 04 11:34:33 2019 +1100 |
tree | 98e17a157128aef52edcfd48d773f0ed14fc8049 | |
parent | 155aee98cab69d1a63c4075d7f2f959b4846c88a [diff] |
stestr expects --concurrency to be an int Change-Id: Ia56c182287510ffbaee412b6e2a3b1eb5ad510e0 Related: https://github.com/mtreinish/stestr/issues/231
diff --git a/tempest/cmd/run.py b/tempest/cmd/run.py index 3e84b82..a8ef08c 100644 --- a/tempest/cmd/run.py +++ b/tempest/cmd/run.py
@@ -252,6 +252,7 @@ default=False) # execution args parser.add_argument('--concurrency', '-w', + type=int, help="The number of workers to use, defaults to " "the number of cpus") parallel = parser.add_mutually_exclusive_group()