From d3fb6570ad23044d3c521d51da55719b287ee9c9 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 15 May 2022 17:12:28 +0200 Subject: [PATCH] readd static test --- InvenTree/InvenTree/test_middleware.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/InvenTree/InvenTree/test_middleware.py b/InvenTree/InvenTree/test_middleware.py index bced2eb079..9eac34d8c8 100644 --- a/InvenTree/InvenTree/test_middleware.py +++ b/InvenTree/InvenTree/test_middleware.py @@ -32,6 +32,9 @@ class MiddlewareTests(TestCase): # logout self.client.logout() + # check that static files go through + self.check_path('/static/css/inventree.css') + # check that account things go through self.check_path(reverse('account_login'))