From 9e5707a9e19faa6c5d0a7accdb028a831292f9c5 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Wed, 29 Dec 2021 12:31:14 -0800 Subject: [PATCH] Move templatetags test file into subdirectory --- bookwyrm/tests/templatetags/__init__.py | 1 + bookwyrm/tests/{ => templatetags}/test_templatetags.py | 0 2 files changed, 1 insertion(+) create mode 100644 bookwyrm/tests/templatetags/__init__.py rename bookwyrm/tests/{ => templatetags}/test_templatetags.py (100%) diff --git a/bookwyrm/tests/templatetags/__init__.py b/bookwyrm/tests/templatetags/__init__.py new file mode 100644 index 00000000..b6e690fd --- /dev/null +++ b/bookwyrm/tests/templatetags/__init__.py @@ -0,0 +1 @@ +from . import * diff --git a/bookwyrm/tests/test_templatetags.py b/bookwyrm/tests/templatetags/test_templatetags.py similarity index 100% rename from bookwyrm/tests/test_templatetags.py rename to bookwyrm/tests/templatetags/test_templatetags.py