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