Skip to content

Commit

Permalink
another attempt to switch travis to green
Browse files Browse the repository at this point in the history
  • Loading branch information
gbin committed Oct 13, 2013
1 parent 0bece79 commit c8c9534
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -5,7 +5,7 @@ python:
- "3.3"

before_script:
- cp errbot/config-template.py config.py
- cp errbot/config-travisci.py config.py

install:
- python setup.py install
Expand Down
24 changes: 24 additions & 0 deletions errbot/config-travisci.py
@@ -0,0 +1,24 @@
# config for travisci
# Don't use this for sensible defaults
import logging
BOT_DATA_DIR = '/tmp'
BOT_EXTRA_PLUGIN_DIR = None
BOT_LOG_FILE = '/tmp/err.log'
BOT_LOG_LEVEL = logging.DEBUG
BOT_LOG_SENTRY = False
SENTRY_DSN = ''
SENTRY_LOGLEVEL = BOT_LOG_LEVEL
BOT_ASYNC = True
BOT_IDENTITY = {
'username': 'err@localhost',
'password': 'changeme',
}

BOT_ADMINS = ('gbin@localhost',)
CHATROOM_PRESENCE = ()
CHATROOM_FN = 'Err'
BOT_PREFIX = '!'
DIVERT_TO_PRIVATE = ()
CHATROOM_RELAY = {}
REVERSE_CHATROOM_RELAY = {}

0 comments on commit c8c9534

Please sign in to comment.