bots: tests: Remove superfluous sys.path insertion.

This commit is contained in:
Robert Hönig
2017-06-17 13:59:28 +02:00
committed by showell
parent a869cab2db
commit bc183b8e61
11 changed files with 0 additions and 85 deletions

View File

@@ -3,15 +3,8 @@
from __future__ import absolute_import
from __future__ import print_function
import os
import sys
from six.moves import zip
our_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.normpath(os.path.join(our_dir)))
# For dev setups, we can find the API in the repo itself.
if os.path.exists(os.path.join(our_dir, '..')):
sys.path.insert(0, '..')
from bots_test_lib import BotTestCase
class TestHelpBot(BotTestCase):