X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c3788d765ed4e7ddf00794085af757714bc102cf..e1af6a22d357de51c86ac73582beba2b4419227b:/test/python/cli/conftest.py diff --git a/test/python/cli/conftest.py b/test/python/cli/conftest.py index ea45f2a1..09bfd353 100644 --- a/test/python/cli/conftest.py +++ b/test/python/cli/conftest.py @@ -30,6 +30,7 @@ class DummyTokenizer: self.update_sql_functions_called = False self.finalize_import_called = False self.update_statistics_called = False + self.update_word_tokens_called = False def update_sql_functions(self, *args): self.update_sql_functions_called = True @@ -40,6 +41,9 @@ class DummyTokenizer: def update_statistics(self): self.update_statistics_called = True + def update_word_tokens(self): + self.update_word_tokens_called = True + @pytest.fixture def cli_call(src_dir): @@ -49,11 +53,7 @@ def cli_call(src_dir): def _call_nominatim(*args): return nominatim.cli.nominatim(module_dir='MODULE NOT AVAILABLE', osm2pgsql_path='OSM2PGSQL NOT AVAILABLE', - phplib_dir=str(src_dir / 'lib-php'), - data_dir=str(src_dir / 'data'), phpcgi_path='/usr/bin/php-cgi', - sqllib_dir=str(src_dir / 'lib-sql'), - config_dir=str(src_dir / 'settings'), cli_args=args) return _call_nominatim