Changes in LHCbDIRAC/tests/Utilities/testJobDefinitions.py
Creates files on time and Delete them after with unique content and name:
timenow = str(time.time()).replace(".", "") file = open(wdir+timenow+"", "w") file.write(timenow) file.close()
...
os.remove(wdir+timenow+"")