1# Copyright (c) 2012 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import common, logging 6from autotest_lib.client.common_lib import global_config, utils 7from autotest_lib.scheduler import drone_utility 8 9 10class SiteResultsArchiver(object): 11 12 13 def archive_results(self, path): 14 """ 15 Skip archiving results. 16 17 Avoid copying results back to atlantis1 AKA cautotest. This copy is 18 unnecessary because all results are backed up to Google Storage via 19 gs_offloader. 20 """ 21 pass 22