Lines Matching full:env
1 #!/usr/bin/env python3
46 env = TwisterEnv(options)
47 env.board_roots = [os.path.join(test_data, "board_config", "1_level", "2_level")]
48 env.test_roots = [os.path.join(testsuites_dir, 'tests', testsuites_dir, 'samples')]
49 env.test_config = os.path.join(test_data, "test_config.yaml")
50 env.outdir = tmpdir_factory.mktemp("sanity_out_demo")
51 return env
57 env = class_env
58 env.board_roots = [test_data +"board_config/1_level/2_level/"]
59 env.test_roots = [testsuites_dir + '/tests', testsuites_dir + '/samples']
60 env.outdir = tmpdir_factory.mktemp("sanity_out_demo")
61 plan = TestPlan(env)
62 plan.parse_configuration(config_file=env.test_config)
78 class_testplan.env.board_roots = [os.path.abspath(os.path.join(test_data, "board_config"))]
79 plan = TestPlan(class_testplan.env)
80 plan.parse_configuration(config_file=class_testplan.env.test_config)