Lines Matching full:env
1 #!/usr/bin/env python3
40 env = TwisterEnv(options)
41 env.board_roots = [os.path.join(test_data, "board_config", "1_level", "2_level")]
42 env.test_roots = [os.path.join(testsuites_dir, 'tests', testsuites_dir, 'samples')]
43 env.test_config = os.path.join(test_data, "test_config.yaml")
44 env.outdir = tmpdir_factory.mktemp("sanity_out_demo")
45 return env
51 env = class_env
52 env.board_roots = [test_data +"board_config/1_level/2_level/"]
53 env.test_roots = [testsuites_dir + '/tests', testsuites_dir + '/samples']
54 env.outdir = tmpdir_factory.mktemp("sanity_out_demo")
55 plan = TestPlan(env)
56 plan.parse_configuration(config_file=env.test_config)
72 class_testplan.env.board_roots = [os.path.abspath(os.path.join(test_data, "board_config"))]
73 plan = TestPlan(class_testplan.env)
74 plan.parse_configuration(config_file=class_testplan.env.test_config)