mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 14:37:17 +02:00
Further tests with travis
This commit is contained in:
parent
e65296203b
commit
78c289ef0b
3 changed files with 7 additions and 5 deletions
|
|
@ -39,7 +39,7 @@ before_script:
|
|||
- evennia collectstatic --noinput
|
||||
|
||||
script:
|
||||
- coverage run --source=../evennia --omit=*/migrations/*,*/urls.py,*/test*.py,*.sh,*.txt,*.md,*.pyc,*.service ../bin/unix/evennia test --settings=settings evennia
|
||||
- coverage run --source=../evennia --omit=*/migrations/*,*/urls.py,*/test*.py,*.sh,*.txt,*.md,*.pyc,*.service ../bin/unix/evennia test --settings=settings --keepdb evennia
|
||||
|
||||
after_success:
|
||||
- coveralls
|
||||
|
|
|
|||
|
|
@ -44,11 +44,10 @@ DATABASES = {
|
|||
'NAME': 'evennia',
|
||||
'USER': 'evennia',
|
||||
'PASSWORD': 'password',
|
||||
'HOST': 'localhost', # or an IP Address that your DB is hosted on
|
||||
'HOST': 'localhost',
|
||||
'PORT': '', # use default port
|
||||
'TEST': {
|
||||
'CHARSET': 'utf8',
|
||||
'COLLATION': 'utf8_unicode_ci'
|
||||
'NAME': 'default'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,7 +45,10 @@ DATABASES = {
|
|||
'USER': 'evennia',
|
||||
'PASSWORD': 'password',
|
||||
'HOST': 'localhost',
|
||||
'PORT': '' # use default
|
||||
'PORT': '', # use default
|
||||
'TEST': {
|
||||
'NAME': 'default'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue