comparison piecrust/appconfig.py @ 979:45ad976712ec

tests: Big push to get the tests to pass again. - Lots of fixes everywhere in the code. - Try to handle debug logging in the multiprocessing worker pool when running in pytest. Not perfect, but usable for now. - Replace all `.md` test files with `.html` since now a auto-format extension always sets the format. - Replace `out` with `outfiles` in most places since now blog archives are added to the bake output and I don't want to add expected outputs for blog archives everywhere.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 29 Oct 2017 22:51:57 -0700
parents 6c445771a8dc
children 2323f0788170
comparison
equal deleted inserted replaced
978:7e51d14097cb 979:45ad976712ec
389 sc.setdefault('type', 'default') 389 sc.setdefault('type', 'default')
390 sc.setdefault('fs_endpoint', sn) 390 sc.setdefault('fs_endpoint', sn)
391 sc.setdefault('ignore_missing_dir', False) 391 sc.setdefault('ignore_missing_dir', False)
392 sc.setdefault('data_endpoint', None) 392 sc.setdefault('data_endpoint', None)
393 sc.setdefault('data_type', None) 393 sc.setdefault('data_type', None)
394 sc.setdefault('default_layout', 'default')
394 sc.setdefault('item_name', sn) 395 sc.setdefault('item_name', sn)
395 sc.setdefault('items_per_page', 5) 396 sc.setdefault('items_per_page', 5)
396 sc.setdefault('date_format', DEFAULT_DATE_FORMAT) 397 sc.setdefault('date_format', DEFAULT_DATE_FORMAT)
397 sc.setdefault('realm', REALM_USER) 398 sc.setdefault('realm', REALM_USER)
398 sc.setdefault('pipeline', None) 399 sc.setdefault('pipeline', None)