From 99dfef936cef79f5281598535ab74a9ef9774eb1 Mon Sep 17 00:00:00 2001 From: Tony Tung Date: Mon, 27 Jan 2020 10:11:06 -0800 Subject: [PATCH] Make napari/tests a package I considered making all the tests namespace packages, but it turns out pytest [chokes](https://github.com/pytest-dev/pytest/issues/3396) [on](https://github.com/pytest-dev/pytest/issues/1927) [namespace packages](https://github.com/pytest-dev/pytest/issues/478). So this is the best solution for now. Test plan: made a distribution (python setup.py sdist) then installed it in a separate virtualenv. then ran tests (`pytest --pyargs napari`). --- napari/tests/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 napari/tests/__init__.py diff --git a/napari/tests/__init__.py b/napari/tests/__init__.py new file mode 100644 index 00000000000..e69de29bb2d