blob: cbad501adda829e6e60b2038e455924a1a60b167 [file] [log] [blame]
# Copyright 2021 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from recipe_engine import recipe_test_api
class AutocorrelatorTestApi(recipe_test_api.RecipeTestApi):
def check_ci(self, step_name, test_data):
return self.step_data(
"%s.run autocorrelator" % step_name, self.m.json.output(test_data)
)
def check_try(self, step_name, test_data):
return self.step_data(
"%s.run autocorrelator" % step_name, self.m.json.output(test_data)
)