Merge "Can't pause a async action using cli"

This commit is contained in:
Zuul
2018-11-14 05:25:07 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -249,7 +249,7 @@ class Update(command.ShowOne):
parser.add_argument(
'--state',
dest='state',
choices=['IDLE', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED'],
choices=['PAUSED', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED'],
help='Action execution state')
parser.add_argument(
'--output',

View File

@@ -125,7 +125,7 @@ class TestCLIActionExecutions(base.BaseCommandTest):
)
def test_update(self):
states = ['IDLE', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED']
states = ['PAUSED', 'RUNNING', 'SUCCESS', 'ERROR', 'CANCELLED']
for state in states:
action_ex_dict = copy.deepcopy(ACTION_EX_DICT)
@@ -156,7 +156,7 @@ class TestCLIActionExecutions(base.BaseCommandTest):
self.assertEqual(expected_result, result[1])
def test_update_invalid_state(self):
states = ['PAUSED', 'WAITING', 'DELAYED']
states = ['IDLE', 'WAITING', 'DELAYED']
# Redirect the stderr so it doesn't show during tox
_stderr = sys.stderr