diff --git a/dax/processors_v3.py b/dax/processors_v3.py index 5bc55707..6c35791d 100644 --- a/dax/processors_v3.py +++ b/dax/processors_v3.py @@ -20,7 +20,6 @@ JOB_PENDING, REPROC, RERUN, - FAILED_NEEDS_REPROC, NEEDS_QA, ) from . import utilities @@ -1491,6 +1490,8 @@ def _read_yaml(self, yaml_file): # Load the command text self.command = doc.get('command') + self.command_pre = doc.get('pre', None) + self.command_post = doc.get('post', None) # Set Inputs from Yaml inputs = doc.get('inputs')