File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def load_hooks(metadata):
107
107
import pyperf ._hooks
108
108
109
109
hook_managers = pyperf ._hooks .instantiate_selected_hooks (hook_names )
110
- metadata ["hooks" ] = ", " .join (hook_managers .values ())
110
+ metadata ["hooks" ] = ", " .join (hook_managers .keys ())
111
111
else :
112
112
hook_managers = {}
113
113
Original file line number Diff line number Diff line change @@ -506,6 +506,18 @@ def test_bench_command(self):
506
506
self .assertEqual (bench .get_metadata ()['command' ],
507
507
' ' .join (map (shell_quote , args )))
508
508
509
+ def test_hook_command (self ):
510
+ args = [sys .executable , '-c' , 'pass' ]
511
+
512
+ runner = self .create_runner ('-l1 -w0 -n1 --worker --hook _test_hook' .split ())
513
+ with tests .capture_stdout ():
514
+ bench = runner .bench_command ('bench' , args )
515
+
516
+ self .assertEqual (bench .get_metadata ()['command' ],
517
+ ' ' .join (map (shell_quote , args )))
518
+ self .assertEqual (bench .get_metadata ()["hooks" ],
519
+ "_test_hook" )
520
+
509
521
def test_single_instance (self ):
510
522
runner1 = self .create_runner ([]) # noqa
511
523
with self .assertRaises (RuntimeError ):
You can’t perform that action at this time.
0 commit comments