@@ -496,35 +496,46 @@ def main(verbose=False, fail_fast=False, quiet=False, filenames=None, drop_into_
496
496
if not isinstance (module_markers , list ):
497
497
module_markers = [module_markers ]
498
498
499
- from hammett .impl import execute_test_function
499
+ from hammett .impl import execute_test_function , execute_test_class
500
+ from unittest import TestCase
500
501
for name , f in list (module .__dict__ .items ()):
501
502
if g .results ['abort' ]:
502
503
break
503
- if name .startswith ('test_' ) and callable (f ):
504
- for m in module_markers :
505
- f = m (f )
506
-
507
- if match is not None :
508
- if match not in name :
509
- continue
510
-
511
- if markers is not None :
512
- keep = False
513
- for f_marker in getattr (f , 'hammett_markers' , []):
514
- if f_marker .name in markers :
515
- arg = markers [f_marker .name ]
516
- if arg is not None :
517
- assert len (f_marker .args ) == 1 , 'hammett only supports filtering on single arguments to markers right now'
518
- if str (f_marker .args [0 ]) == arg :
519
- keep = True
520
- break
521
- else :
504
+
505
+ if match is not None :
506
+ if match not in name :
507
+ continue
508
+
509
+ for m in module_markers :
510
+ f = m (f )
511
+
512
+ is_test_function = name .startswith ('test_' ) and callable (f )
513
+ is_test_class = isinstance (f , type ) and issubclass (f , TestCase )
514
+
515
+ if not is_test_function and not is_test_class :
516
+ continue
517
+
518
+ if markers is not None :
519
+ keep = False
520
+ for f_marker in getattr (f , 'hammett_markers' , []):
521
+ if f_marker .name in markers :
522
+ arg = markers [f_marker .name ]
523
+ if arg is not None :
524
+ assert len (f_marker .args ) == 1 , 'hammett only supports filtering on single arguments to markers right now'
525
+ if str (f_marker .args [0 ]) == arg :
522
526
keep = True
523
527
break
524
- if not keep :
525
- continue
528
+ else :
529
+ keep = True
530
+ break
531
+ if not keep :
532
+ continue
533
+
534
+ if is_test_function :
535
+ execute_test_function (f'{ module_name } .{ name } ' , f , module_request )
536
+ elif is_test_class :
537
+ execute_test_class (f'{ module_name } .{ name } ' , f , module_request )
526
538
527
- execute_test_function (module_name + '.' + name , f , module_request )
528
539
if should_stop ():
529
540
break
530
541
0 commit comments