@@ -28,32 +28,38 @@ foreach volume: g4objects.keys()
2828 pars = g4objects[volume]
2929 test (' api_show_template_code_for_' + volume,
3030 python_exe,
31+ is_parallel : false ,
3132 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
3233 args : [api_dir + ' system_template.py' , ' -gv' , volume])
3334 test (' api_template_show_code_for_volume' + volume + ' _with_parameters_' + pars.replace(' ' , '' ),
3435 python_exe,
36+ is_parallel : false ,
3537 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
3638 args : [api_dir + ' system_template.py' , ' -gv' , volume, ' -gvp' , pars.replace(' ' , '' )])
3739endforeach
3840
3941test (' api_show_template_code_for_G4Cons' ,
4042 python_exe,
43+ is_parallel : false ,
4144 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
4245 args : [api_dir + ' system_template.py' , ' -gv' , ' G4Cons' , ' -silent' ])
4346
4447test_dir = meson .current_build_dir() + ' /../test'
4548test (' api_create_system' ,
4649 python_exe,
50+ is_parallel : false ,
4751 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
4852 args : [api_dir + ' system_template.py' , ' -s' , ' test' ], priority : 5 )
4953foreach format : [' ascii' , ' sqlite' ]
5054 test (' api_template_build_geometry_in_test_for_format_' + format,
5155 python_exe,
56+ is_parallel : false ,
5257 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
5358 args : [' test.py' , ' -f' , format], workdir : test_dir, priority : - 1 )
5459 test (' api_run_gemc_for_format_' + format,
5560 gemc, args : [' test.yaml' , ' -gsystem="[{name: test, factory: ' + format + ' }]" ' ],
5661 workdir : test_dir,
62+ is_parallel : false ,
5763 env : project_test_env,
5864 priority : - 2 )
5965endforeach
@@ -69,21 +75,25 @@ foreach volume: g4objects.keys()
6975 pars = g4objects[volume]
7076 test (' api_create_template_system_with' + volume,
7177 python_exe,
78+ is_parallel : false ,
7279 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
7380 args : [api_dir + ' system_template.py' , ' -s' , test_name], priority : 4 )
7481 test (' api_template_replace_geometry_with' + volume,
7582 python_exe,
83+ is_parallel : false ,
7684 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
7785 args : [api_dir + ' system_template.py' , ' -gv' , volume, ' -gvp' , pars, geo_py, sub_name], workdir : test_dir, priority : - 3 )
7886 foreach format : [' ascii' , ' sqlite' ]
7987 test (' api_template_build_geometry_in_test_of_replacing_geometry_with' + volume + ' _with_format' + format,
8088 python_exe,
89+ is_parallel : false ,
8190 env : {' PYTHONDONTWRITEBYTECODE' : ' 1' },
8291 args : [python_main, ' -f' , format], workdir : test_dir, priority : - 4 )
8392 test (' api_run_gemc_with_replaced_geometry_using_' + volume + ' _with_format' + format,
8493 gemc,
8594 args : [yaml_file, ' -gsystem="[{name: ' + test_name + ' , factory: ' + format + ' }]" ' ],
8695 workdir : test_dir,
96+ is_parallel : false ,
8797 env : project_test_env,
8898 priority : - 30 )
8999 endforeach
0 commit comments