@@ -392,7 +392,12 @@ def test_module(ctx, module=None, numprocesses=None, nocapture=False, params=Non
392
392
'api_tests/wikis' ,
393
393
]
394
394
ADDON_TESTS = [
395
- 'addons' ,
395
+ 'addons/base' ,
396
+ 'addons/boa' ,
397
+ 'addons/forward' ,
398
+ 'addons/osfstorage' ,
399
+ 'addons/twofactor' ,
400
+ 'addons/wiki' ,
396
401
]
397
402
ADMIN_TESTS = [
398
403
'admin_tests' ,
@@ -430,7 +435,7 @@ def test_api3(ctx, numprocesses=None, coverage=False, testmon=False, junit=False
430
435
"""Run the API test suite."""
431
436
print (f'Testing modules "{ API_TESTS3 + OSF_TESTS } "' )
432
437
# NOTE: There may be some concurrency issues with ES
433
- test_module (ctx , module = API_TESTS3 + OSF_TESTS , numprocesses = numprocesses , coverage = coverage , testmon = testmon , junit = junit )
438
+ test_module (ctx , module = API_TESTS3 , numprocesses = numprocesses , coverage = coverage , testmon = testmon , junit = junit )
434
439
435
440
436
441
@task
@@ -445,7 +450,7 @@ def test_addons(ctx, numprocesses=None, coverage=False, testmon=False, junit=Fal
445
450
"""Run all the tests in the addons directory.
446
451
"""
447
452
print (f'Testing modules "{ ADDON_TESTS + ADMIN_TESTS } "' )
448
- test_module (ctx , module = ADDON_TESTS + ADMIN_TESTS , numprocesses = numprocesses , coverage = coverage , testmon = testmon , junit = junit )
453
+ test_module (ctx , module = ADDON_TESTS + ADMIN_TESTS + OSF_TESTS , numprocesses = numprocesses , coverage = coverage , testmon = testmon , junit = junit )
449
454
450
455
451
456
@task
0 commit comments