automatically tests all Mayan apps that report to have tests. Change the app flag that indicates when an app has test from 'test' to the more explicit 'has_test'. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
11 lines
245 B
Python
11 lines
245 B
Python
from __future__ import unicode_literals
|
|
|
|
from django import apps
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class LockManagerApp(apps.AppConfig):
|
|
has_tests = True
|
|
name = 'lock_manager'
|
|
verbose_name = _('Lock manager')
|