# HG changeset patch # User Marcin Kuzminski # Date 2017-11-15 19:30:29 # Node ID 164d8f965a8aef72eca1e82bb6469c82bf123f75 # Parent 363cf393893605abb5edce09172302943d78077c tests: pass in config ini into global configuration, same as the real app does. diff --git a/rhodecode/tests/pylons_plugin.py b/rhodecode/tests/pylons_plugin.py --- a/rhodecode/tests/pylons_plugin.py +++ b/rhodecode/tests/pylons_plugin.py @@ -333,7 +333,7 @@ def baseapp(ini_config, vcsserver, http_ pyramid.paster.setup_logging(ini_config) settings = get_app_config(ini_config) - app = make_pyramid_app({}, **settings) + app = make_pyramid_app({'__file__': ini_config}, **settings) return app