コード例 #1
0
 def setUp(self):
     self.jt = jt = Session.createJobTemplate()
     jt.remoteCommand = 'python'
     jt.args = ['-c', "print('hello from python!')"]
     if hasattr(self, 'jt_tweaks'):
         self.jt_tweaks()
     self.jid = Session.runJob(jt)
コード例 #2
0
def test_with_jt():
    """'with' statement works with JobTemplate"""
    s = Session()
    s.initialize()
    with s.createJobTemplate() as jt:
        jt.remoteCommand = 'sleep'
        jt.args = ['10']
        jid = s.runJob(jt)
        print(s.wait(jid))
    s.exit()
コード例 #3
0
def test_allocate():
    "job template allocation"
    jt = Session.createJobTemplate()
    Session.deleteJobTemplate(jt)
コード例 #4
0
 def setUp(self):
     self.jt = Session.createJobTemplate()