devtools/__init__.py
branchstable
changeset 6843 b70a26ca271c
parent 6750 ef513c03a224
child 7032 b712477ae286
equal deleted inserted replaced
6841:f04df13fc851 6843:b70a26ca271c
   173         return BASE_URL
   173         return BASE_URL
   174 
   174 
   175 
   175 
   176 class BaseApptestConfiguration(TestServerConfiguration, TwistedConfiguration):
   176 class BaseApptestConfiguration(TestServerConfiguration, TwistedConfiguration):
   177     repo_method = 'inmemory'
   177     repo_method = 'inmemory'
       
   178     name = 'all-in-one' # so it search for all-in-one.conf, not repository.conf
   178     options = cwconfig.merge_options(TestServerConfiguration.options
   179     options = cwconfig.merge_options(TestServerConfiguration.options
   179                                      + TwistedConfiguration.options)
   180                                      + TwistedConfiguration.options)
   180     cubicweb_appobject_path = TestServerConfiguration.cubicweb_appobject_path | TwistedConfiguration.cubicweb_appobject_path
   181     cubicweb_appobject_path = TestServerConfiguration.cubicweb_appobject_path | TwistedConfiguration.cubicweb_appobject_path
   181     cube_appobject_path = TestServerConfiguration.cube_appobject_path | TwistedConfiguration.cube_appobject_path
   182     cube_appobject_path = TestServerConfiguration.cube_appobject_path | TwistedConfiguration.cube_appobject_path
   182 
   183