From 52f364262d947b8a5c925b699accf52f526249cb Mon Sep 17 00:00:00 2001 From: Matthew Schinckel Date: Sat, 9 Apr 2016 11:48:28 +0930 Subject: Improve doc strings. --- tox/hookspecs.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tox/hookspecs.py b/tox/hookspecs.py index ffd6379..db589ed 100644 --- a/tox/hookspecs.py +++ b/tox/hookspecs.py @@ -45,9 +45,15 @@ def tox_testenv_install_deps(venv, action): @hookspec def tox_runtest_pre(venv): - """ [experimental] perform arbitrary action before running tests. """ + """ [experimental] perform arbitrary action before running tests for this venv. + + This could be used to indicate that tests for a given venv have started, for intstance. + """ @hookspec def tox_runtest_post(venv): - """ [experimental] perform arbitrary action after running tests. """ + """ [experimental] perform arbitrary action after running tests for this venv. + + This could be used to have per-venv test reporting of pass/fail status. + """ -- cgit v1.2.1