Lines Matching full:path
19 USAGE="""tko-publish [options] <resultsdir> <rsync-destination-path>
22 <resultsdir> A path to the directory having the job results
25 <rsync-destination-path> A valid rsync destination path where to upload the
32 def get_job_dirs(path):
36 for dir in os.listdir(path):
41 dir = os.path.join(options.resultsdir, dir)
42 if (os.path.isdir(dir)
43 and not os.path.exists(os.path.join(dir, PUBLISH_FLAGFILE))):
54 fd = open(os.path.join(jobdir, PUBLISH_FLAGFILE), 'w')
75 job_id = int(os.path.basename(jobdir).split('-')[0])