def test_SkyQuery_getJobStatus(self): jobId = SkyQuery.submitJob(query=SkyQuery_Query, queue="quick") jobDescription = SkyQuery.getJobStatus(jobId=jobId)
# In[ ]: #submit a query as a job jobId = SkyQuery.submitJob(query=SkyQuery_Query, queue="quick") print(jobId) # In[ ]: #get status of a submitted job jobId = SkyQuery.submitJob(query=SkyQuery_Query, queue="quick") jobDescription = SkyQuery.getJobStatus(jobId=jobId) print(jobDescription) # In[ ]: # wait for a job to be finished and then get the status jobId = SkyQuery.submitJob(query=SkyQuery_Query, queue="quick") jobDescription = SkyQuery.waitForJob(jobId=jobId, verbose=True) print("jobDescription=") print(jobDescription) # In[ ]: