From 378a572c7ebb96ed62e197f482ffa7f5a85f969f Mon Sep 17 00:00:00 2001 From: Tony Tung Date: Mon, 27 Jan 2020 10:11:15 -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`). Fixes #875 --- 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