mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Add static into apps
This commit is contained in:
parent
b55c76d8ef
commit
dfaf7bcad8
6
tasks.py
6
tasks.py
@ -23,6 +23,7 @@ def apps():
|
|||||||
'part',
|
'part',
|
||||||
'report',
|
'report',
|
||||||
'stock',
|
'stock',
|
||||||
|
'static',
|
||||||
'users',
|
'users',
|
||||||
'plugin',
|
'plugin',
|
||||||
'InvenTree',
|
'InvenTree',
|
||||||
@ -290,8 +291,9 @@ def coverage(c):
|
|||||||
manage(c, 'check')
|
manage(c, 'check')
|
||||||
|
|
||||||
# Run coverage tests
|
# Run coverage tests
|
||||||
c.run('coverage run {manage} test'.format(
|
c.run('coverage run {manage} test {apps}'.format(
|
||||||
manage=managePyPath()
|
manage=managePyPath(),
|
||||||
|
apps=' '.join(apps())
|
||||||
))
|
))
|
||||||
|
|
||||||
# Generate coverage report
|
# Generate coverage report
|
||||||
|
Loading…
Reference in New Issue
Block a user