blob: 1709b280fa61ce0543a2011876913ace2a950873 [file] [log] [blame]
import os
from autotest_lib.server import installable_object
class SiteAutotest(installable_object.InstallableObject):
def get(self, location = None):
if not location:
location = os.path.join(self.serverdir, '../client')
location = os.path.abspath(location)
installable_object.InstallableObject.get(self, location)
self.got = True
class _SiteRun(object):
pass