You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
509 B
21 lines
509 B
#!/usr/bin/python2
|
|
import os, sys, shutil
|
|
thisdir = os.path.dirname(os.path.abspath(sys.argv[0]))
|
|
sys.path.insert(0, os.path.abspath(os.path.join(thisdir, '../tko')))
|
|
import db
|
|
|
|
usage = "usage: delete_job_results <job tag>"
|
|
|
|
if len(sys.argv) < 2:
|
|
print usage
|
|
sys.exit(2)
|
|
tag = sys.argv[1]
|
|
resultsdir = os.path.abspath(os.path.join(thisdir, '../results', tag))
|
|
|
|
db = db.db()
|
|
if not db.find_job(tag):
|
|
raise "Job tag %s does not exist in database" % tag
|
|
|
|
db.delete_job(tag)
|
|
shutil.rmtree(resultsdir)
|