Permalink
Browse files

no_chaos -> no_matrix

Removes ambiguity about what it turns off.
  • Loading branch information...
1 parent 0087bfa commit 96f323abd81c537b99612a8fab3cf2fcf41170f5 @petevg petevg committed May 2, 2017
Showing with 2 additions and 2 deletions.
  1. +1 −1 bundletester/spec.py
  2. +1 −1 bundletester/tester.py
View
@@ -268,7 +268,7 @@ def conditional_matrix(self, dirname):
if self.options.juju_major_version < 2:
# matrix currently requires Juju 2.0+
return
- if self.options.no_chaos:
+ if self.options.no_matrix:
return
try:
subprocess.call(['juju-matrix', '--help'],
View
@@ -83,7 +83,7 @@ def configure():
help='A plan to deploy charm under')
parser.add_argument('--deploy-budget',
help='Deploy budget and allocation limit')
- parser.add_argument('--no-chaos', action="store_true",
+ parser.add_argument('--no-matrix', action="store_true",
help="Skip matrix test run, even if juju-matrix is "
"in your path.")
options = parser.parse_args()

0 comments on commit 96f323a

Please sign in to comment.