Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
18 | class CheckDeploymentEnvAction(BaseGithubAction): |
||
19 | def run(self, deploy_env): |
||
20 | |||
21 | if deploy_env == self.config['deployment_environment']: |
||
22 | return True |
||
23 | else: |
||
24 | raise ValueError( |
||
25 | "No deployment, my env is '{}' and event for '{}'".format( |
||
26 | deploy_env, |
||
27 | self.config['deployment_environment'])) |
||
28 |