@@ -374,7 +374,10 @@ def get_useful_frame(self, tb):
374
374
def run_safely (self , func , print_immediately = False ):
375
375
if verbose :
376
376
with print_lock :
377
- print (u"\n \t \u21B3 " , func .__qualname__ , " " , end = "" , flush = True )
377
+ if sys .platform == 'win32' :
378
+ print (u"\n \t > " , func .__qualname__ , " " , end = "" , flush = True )
379
+ else :
380
+ print (u"\n \t \u21B3 " , func .__qualname__ , " " , end = "" , flush = True )
378
381
379
382
if func .__code__ is Mark .xfail (func ).__code__ :
380
383
return _skipped_marker
@@ -768,7 +771,10 @@ def run(self):
768
771
self .load_conftest (conftest )
769
772
770
773
if verbose :
771
- print (u"\n \u25B9 " , module .__name__ , end = "" )
774
+ if sys .platform == 'win32' :
775
+ print (u"\n > " , module .__name__ , end = "" )
776
+ else :
777
+ print (u"\n \u25B9 " , module .__name__ , end = "" )
772
778
# some tests can modify the global scope leading to a RuntimeError: test_scope.test_nesting_plus_free_ref_to_global
773
779
module_dict = dict (module .__dict__ )
774
780
for k , v in module_dict .items ():
0 commit comments