def test_run_info(self): fetch_result = catsgo.fetch( "/data/inputs/uploads/oxforduni/sp3_test_data") run_result = catsgo.run_clockwork("sp3test1-Clockwork_combined", fetch_result["guid"]) result = catsgo.run_info("sp3test1-Clockwork_combined", run_result["run_uuid"]) print(result)
def test_run_clockwork(self): fetch_result = catsgo.fetch("/data/inputs/uploads/oxforduni/sp3_test_data") result = catsgo.run_clockwork("sp3test1-Clockwork_combined", fetch_result["guid"]) self.assertTrue("run_uuid" in result.keys())
def test_fetch(self): result = catsgo.fetch("/data/inputs/uploads/oxforduni/sp3_test_data") self.assertTrue("guid" in result.keys())