setup.py includes all packages (containing an init.py) using find_packages(). This is a problem because it will include the tests directory as a top level importable module in the local app, breaking our own tests that happen to live in a directory with the same name.
Fixes #131
Short description of what this PR does:
setup.py includes all packages (containing an init.py) using find_packages(). This is a problem because it will include the
tests
directory as a top level importable module in the local app, breaking our own tests that happen to live in a directory with the same name.