Scott Zawalski | 38428ef | 2012-07-10 15:29:10 -0400 | [diff] [blame] | 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 | |
| 5 | import common, logging |
| 6 | from autotest_lib.client.common_lib import global_config, utils |
| 7 | from autotest_lib.scheduler import drone_utility |
| 8 | |
| 9 | |
| 10 | class 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 |