Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Hudson adjustment.
Browse files Browse the repository at this point in the history
  • Loading branch information
davedash committed Aug 9, 2010
1 parent d1fed2d commit 24fac25
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions scripts/build.sh
Expand Up @@ -27,10 +27,15 @@ from settings import *
ROOT_URLCONF = 'workspace.urls'
LOG_LEVEL = logging.ERROR
# Database name has to be set because of sphinx
DATABASES['default']['NAME'] = 'input_$1'
DATABASES['default']['TEST_NAME'] = 'test_input_$1'
DATABASES['default']['TEST_CHARSET'] = 'utf8'
DATABASES['default']['TEST_COLLATION'] = 'utf8_general_ci'
DATABASES = {
'default': {
'ENGINE': 'mysql',
'NAME': 'input_$1',
'TEST_NAME': 'test_input_$1',
'TEST_CHARSET': 'utf8',
'TEST_COLLATION': 'utf8_general_ci',
}
}
SETTINGS

echo "Starting tests..."
Expand Down

0 comments on commit 24fac25

Please sign in to comment.