def test_deps_and_tripleo_allowed(self): self.args.repos = ['deps', 'current-tripleo'] main._validate_args(self.args)
def test_tripleo_ci_testing_and_deps_allowed(self): self.args.repos = ['deps', 'tripleo-ci-testing'] main._validate_args(self.args)
def test_ceph_and_tripleo_dev(self): self.args.repos = ['current-tripleo-dev', 'ceph'] self.args.output_path = main.DEFAULT_OUTPUT_PATH main._validate_args(self.args)
def test_tripleo_ci_testing_and_ceph_opstools_allowed(self): self.args.repos = ['ceph', 'opstools', 'tripleo-ci-testing'] main._validate_args(self.args)
def test_good(self): main._validate_args(self.args)