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