Show More
@@ -76,8 +76,8 b' class TestINI(object):' | |||
|
76 | 76 | |
|
77 | 77 | for data in self.ini_params: |
|
78 | 78 | section, ini_params = data.items()[0] |
|
79 |
key, val |
|
|
80 | config[section][key] = val | |
|
79 | for key, val in ini_params.items(): | |
|
80 | config[section][key] = val | |
|
81 | 81 | with tempfile.NamedTemporaryFile( |
|
82 | 82 | prefix=self.new_path_prefix, suffix='.ini', dir=self._dir, |
|
83 | 83 | delete=False) as new_ini_file: |
@@ -283,7 +283,14 b' def pylons_config(request, tmpdir_factor' | |||
|
283 | 283 | |
|
284 | 284 | overrides = [ |
|
285 | 285 | {'server:main': {'port': rcserver_port}}, |
|
286 | {'app:main': {'vcs.server': 'localhost:%s' % vcsserver_port}}] | |
|
286 | {'app:main': { | |
|
287 | 'vcs.server': 'localhost:%s' % vcsserver_port, | |
|
288 | # johbo: We will always start the VCSServer on our own based on the | |
|
289 | # fixtures of the test cases. For the test run it must always be | |
|
290 | # off in the INI file. | |
|
291 | 'vcs.start_server': 'false', | |
|
292 | }}, | |
|
293 | ] | |
|
287 | 294 | if _use_vcs_http_server(request.config): |
|
288 | 295 | overrides.append({'app:main': {'vcs.server.protocol': 'http'}}) |
|
289 | 296 |
General Comments 0
You need to be logged in to leave comments.
Login now