def run_tests(test_labels, *args, **kwargs): 
    # default to all ScraperWiki apps (so we don't run all the Django app tests etc.)
    if len(test_labels) == 0:
        test_labels = settings.SCRAPERWIKI_APPS

    return default_run_tests(test_labels, *args, **kwargs) 
Example #2
0
def run_tests(test_labels, *args, **kwargs):
    return default_run_tests(settings.PROJECT_APPS, *args, **kwargs)
Example #3
0
def run_tests(test_labels, *args, **kwargs):
    return default_run_tests(settings.PROJECT_APPS, *args, **kwargs)
def run_tests(test_labels, *args, **kwargs):
    if not test_labels:
        test_labels = settings.OUR_APPS

    return default_run_tests(test_labels, *args, **kwargs)