From dfaf7bcad89683c72c46fbd688a05ffe3082c082 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Thu, 19 May 2022 07:57:45 +0200 Subject: [PATCH] Add static into apps --- tasks.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index d18c7e8460..ae6f210581 100644 --- a/tasks.py +++ b/tasks.py @@ -23,6 +23,7 @@ def apps(): 'part', 'report', 'stock', + 'static', 'users', 'plugin', 'InvenTree', @@ -290,8 +291,9 @@ def coverage(c): manage(c, 'check') # Run coverage tests - c.run('coverage run {manage} test'.format( - manage=managePyPath() + c.run('coverage run {manage} test {apps}'.format( + manage=managePyPath(), + apps=' '.join(apps()) )) # Generate coverage report