• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1class Configuration(object):
2    """
3    Configuration that can be changed for configurable CFM tests.
4    """
5    def __init__(self, run_test_only=False, skip_enrollment=False):
6        """
7        Initializes.
8
9        @param run_test_only Whether to run only the test or to also perform
10            deprovisioning, enrollment and system reboot. If set to 'True',
11            the DUT must already be enrolled and past the OOB screen to be able
12            to execute the test.
13        @param skip_enrollment Whether to skip the enrollment step. Cleanup
14            at the end of the test is done regardless.
15        """
16        self.run_test_only = run_test_only
17        self.skip_enrollment = skip_enrollment
18