~ricardokirkner/click-toolbelt/fix-storeapi-upload-missing-config

« back to all changes in this revision

Viewing changes to tests.py

[r=matiasb,fgallina] split store api into standalone namespace for easier vendoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from unittest import TestLoader, TestSuite
 
2
 
 
3
 
 
4
def load_tests(loader, tests, pattern):
 
5
    suites = [
 
6
        TestLoader().discover('click_toolbelt', top_level_dir='.'),
 
7
        TestLoader().discover('storeapi', top_level_dir='.'),
 
8
    ]
 
9
    return TestSuite(suites)