From d5d06841f66d01105a65f7ceb7e1b404b9a28e1b Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 19 Jul 2021 21:15:48 +0300 Subject: [PATCH] Fix typo in contexts.rst (#478) The hyperlink wasn't rendering properly. This looks better. --- docs/contexts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contexts.rst b/docs/contexts.rst index c502c1d6..f651db5d 100644 --- a/docs/contexts.rst +++ b/docs/contexts.rst @@ -6,7 +6,7 @@ Coverage.py 5.0 can record separate coverage data for `different contexts`_ duri one run of a test suite. Pytest-cov can use this feature to record coverage data for each test individually, with the ``--cov-context=test`` option. -.. _`different_contexts`: https://coverage.readthedocs.io/en/stable/contexts.html +.. _different contexts: https://coverage.readthedocs.io/en/stable/contexts.html The context name recorded in the coverage.py database is the pytest test id, and the phase of execution, one of "setup", "run", or "teardown". These two