""" Stub to use when running on a machine without job management software """
from __future__ import (absolute_import, division, print_function, unicode_literals)
from builtins import *
### Required ###
NAME = 'default'
[docs]def job_id(all=False, name=None): #pylint: disable=redefined-builtin
"""Raise exception"""
raise Exception("No job management software found")
[docs]def job_rundir(jobid):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def job_status(jobid=None):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def submit(substr):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def delete(jobid):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def hold(jobid):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def release(jobid):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def alter(jobid, arg):
"""Raise exception"""
raise Exception("No job management software found")
[docs]def read(job, qsubstr):
"""Raise exception"""
raise Exception("No job management software found")