• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2022 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
5from autotest_lib.server.cros.pvs import sequence
6
7
8class pvs_Sequence(sequence.test_sequence):
9    """
10    pvs_Sequence implements a test_sequence (wrapper to test.test), instrumenting
11    a series of tests and surfacing their results independently
12    """
13
14    version = 1
15
16    def initialize(self, **args_dict):
17        """
18        initialize implements the initialize call in test.test, and is called before
19        execution of the test.
20        """
21        super(pvs_Sequence, self).initialize(sequence=args_dict['sequence'])
22