Jorge Bastida
Jorge Bastida
Fix how app-test-runner setup the database configuration in order to work with Django 1.4.
Remove it from the list of fatal states and don't make it show the super scary "Oh Oh!!" message.
`It looks like contrib.helpers is missing in your settings.yml file apps list` should be `It looks like gordon.contrib.helpers is missing in your settings.yml file apps list`.
As part of some js bundles we was using wildcards to add several js files ``` js_app = Bundle('js/base.js', 'js/app/*.js', 'js/utils/*.js', filters=['jsmin'], output='js/app.js') ``` With `assets_debug = True` when looping...