zulip package: Add unittest

As the first unittest, this creates a test directory and
abnd adds it tho the excluded pip package files.

There are two `tests` directories now, one in zulip_botserver and one in
zulip. This confuses the unittest runner, leading to failed test imports.
Therefore, we need to tell the package importer that there are multiple
tests directories, all of which should be considered for a search.
This commit is contained in:
derAnfaenger 2017-09-04 20:19:39 +02:00 committed by Tim Abbott
parent 390054da62
commit fb2aff4611
4 changed files with 50 additions and 1 deletions

View file

@ -0,0 +1,2 @@
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)