Add static into apps

This commit is contained in:
Matthias Mair 2022-05-19 07:57:45 +02:00 committed by GitHub
parent b55c76d8ef
commit dfaf7bcad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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