zulip_bots: Use relative paths to find zulip_bots/bots/*.

This commit is contained in:
Eeshan Garg 2017-07-24 22:03:09 -02:30 committed by Tim Abbott
parent 472c869efa
commit d181d0192e
3 changed files with 8 additions and 4 deletions

View file

@ -56,7 +56,9 @@ the tests for xkcd and wikipedia bots):
def main():
glob_pattern = os.path.abspath('../zulip_bots/zulip_bots/bots/*/test_*.py')
current_dir = os.path.dirname(os.path.abspath(__file__))
bots_dir = os.path.join(current_dir, '..', 'zulip_bots/zulip_bots/bots')
glob_pattern = bots_dir + '/*/test_*.py'
test_modules = glob.glob(glob_pattern)
# get only the names of bots that have tests

View file

@ -70,8 +70,9 @@ Example: ./provision.py helloworld xkcd wikipedia
def main():
# type: () -> None
bots_dir = os.path.abspath("bots")
bots_subdirs = map(os.path.abspath, glob.glob("bots/*"))
current_dir = os.path.dirname(os.path.abspath(__file__))
bots_dir = os.path.join(current_dir, "bots")
bots_subdirs = map(os.path.abspath, glob.glob(bots_dir + '/*'))
available_bots = filter(lambda d: os.path.isdir(d), bots_subdirs)
options = parse_args(available_bots)

View file

@ -95,7 +95,8 @@ def main():
lib_module = import_module_from_source(options.path_to_bot, name=options.name)
elif options.name:
if options.provision:
bots_parent_dir = os.path.abspath("bots")
current_dir = os.path.dirname(os.path.abspath(__file__))
bots_parent_dir = os.path.join(current_dir, "bots")
bot_dir = os.path.join(bots_parent_dir, options.name)
provision_bot(bot_dir, options.force)
lib_module = import_module('zulip_bots.bots.{bot}.{bot}'.format(bot=options.name))