@pytest.fixture
def def_config():
cfg = Configuration(None)
- cfg.set_libdirs(module='.', osm2pgsql='.')
+ cfg.set_libdirs(osm2pgsql=None)
return cfg
projdir = tmp_path / 'project'
projdir.mkdir()
cfg = Configuration(projdir)
- cfg.set_libdirs(module='.', osm2pgsql='.')
+ cfg.set_libdirs(osm2pgsql=None)
return cfg
def sql_preprocessor_cfg(tmp_path, table_factory, temp_db_with_extensions):
table_factory('country_name', 'partition INT', ((0, ), (1, ), (2, )))
cfg = Configuration(None)
- cfg.set_libdirs(module='.', osm2pgsql='.', sql=tmp_path)
+ cfg.set_libdirs(osm2pgsql=None, sql=tmp_path)
return cfg