comparison scripts/generate-ini.py @ 5769:6afa528ee30e

db: get rid of vcs_full_cache - it should always be used It might make tests less deterministic, but it makes sure that we test what we actually use.
author Mads Kiilerich <madski@unity3d.com>
date Mon, 14 Mar 2016 16:17:46 +0100
parents 06d5c043e989
children 9358211ee144
comparison
equal deleted inserted replaced
5768:5cb780fd494d 5769:6afa528ee30e
38 ), 38 ),
39 ('kallithea/tests/test.ini', 39 ('kallithea/tests/test.ini',
40 ''' 40 '''
41 Kallithea - config for tests: 41 Kallithea - config for tests:
42 initial_repo_scan = true 42 initial_repo_scan = true
43 vcs_full_cache = false
44 sqlalchemy and kallithea_test.sqlite 43 sqlalchemy and kallithea_test.sqlite
45 custom logging 44 custom logging
46 45
47 The %(here)s variable will be replaced with the parent directory of this file 46 The %(here)s variable will be replaced with the parent directory of this file
48 ''', 47 ''',
51 'port': '4999', 50 'port': '4999',
52 }, 51 },
53 '[app:main]': { 52 '[app:main]': {
54 'initial_repo_scan': 'true', 53 'initial_repo_scan': 'true',
55 'app_instance_uuid': 'test', 54 'app_instance_uuid': 'test',
56 'vcs_full_cache': 'false',
57 'show_revision_number': 'true', 55 'show_revision_number': 'true',
58 'beaker.cache.sql_cache_short.expire': '1', 56 'beaker.cache.sql_cache_short.expire': '1',
59 'beaker.session.secret': '{74e0cd75-b339-478b-b129-07dd221def1f}', 57 'beaker.session.secret': '{74e0cd75-b339-478b-b129-07dd221def1f}',
60 'sqlalchemy.db1.url': 'sqlite:///%(here)s/kallithea_test.sqlite', 58 'sqlalchemy.db1.url': 'sqlite:///%(here)s/kallithea_test.sqlite',
61 }, 59 },