Commit dda784e5 authored by zhangwenwei's avatar zhangwenwei
Browse files

test build pipeline with one valid cfg

parent ee5667c1
...@@ -80,10 +80,10 @@ def test_config_build_pipeline(): ...@@ -80,10 +80,10 @@ def test_config_build_pipeline():
config_dpath = _get_config_directory() config_dpath = _get_config_directory()
print('Found config_dpath = {!r}'.format(config_dpath)) print('Found config_dpath = {!r}'.format(config_dpath))
import glob # Other configs needs database sampler.
config_fpaths = list(glob.glob(join(config_dpath, '**', '*.py'))) config_names = [
config_fpaths = [p for p in config_fpaths if p.find('_base_') == -1] 'nus/hv_pointpillars_secfpn_sbn-all_4x8_20e_nus-3d.py',
config_names = [relpath(p, config_dpath) for p in config_fpaths] ]
print('Using {} config files'.format(len(config_names))) print('Using {} config files'.format(len(config_names)))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment