Skip to content

Commit 8dd3924

Browse files
authored
Merge pull request #208 from mdboom/fix-hooks-subcommands
BUG: Fix running subcommands with hooks
2 parents c960199 + e5d4b55 commit 8dd3924

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

pyperf/_process_time.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def load_hooks(metadata):
107107
import pyperf._hooks
108108

109109
hook_managers = pyperf._hooks.instantiate_selected_hooks(hook_names)
110-
metadata["hooks"] = ", ".join(hook_managers.values())
110+
metadata["hooks"] = ", ".join(hook_managers.keys())
111111
else:
112112
hook_managers = {}
113113

pyperf/tests/test_runner.py

+12
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,18 @@ def test_bench_command(self):
506506
self.assertEqual(bench.get_metadata()['command'],
507507
' '.join(map(shell_quote, args)))
508508

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+
509521
def test_single_instance(self):
510522
runner1 = self.create_runner([]) # noqa
511523
with self.assertRaises(RuntimeError):

0 commit comments

Comments
 (0)