From a68ea222ad757960361d17735b1b3366d9e2328e Mon Sep 17 00:00:00 2001 From: gnikit Date: Fri, 29 Jul 2022 20:13:15 +0100 Subject: [PATCH] fix: fixes syntax bug introduced in #5 --- docs/learning/04 Testing.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/learning/04 Testing.ipynb b/docs/learning/04 Testing.ipynb index 5eaa3ab..ce0c3f2 100644 --- a/docs/learning/04 Testing.ipynb +++ b/docs/learning/04 Testing.ipynb @@ -116,7 +116,7 @@ "source": [ "## Coverage Testing\n", "\n", - "A useful aspect of testing is *coverage*. This involves looking at how much of your code is actually "covered" by the tests you've written. That is, which individual lines of your code are actually being run by your tests. Tools like `pytest-cov` can measure _coverage_. Unfortunately Numba does not play super well with `pytest-cov`, so we have to turn off Numba using an environment variable so that we can run `pytest-cov` and generate the "test report".\n", + "A useful aspect of testing is *coverage*. This involves looking at how much of your code is actually 'covered' by the tests you've written. That is, which individual lines of your code are actually being run by your tests. Tools like `pytest-cov` can measure _coverage_. Unfortunately Numba does not play super well with `pytest-cov`, so we have to turn off Numba using an environment variable so that we can run `pytest-cov` and generate the 'test report'.\n", "\n", "```bash\n", "(recode) tom@TomsLaptop ReCoDE_MCMCFF % pip install pytest-cov # install the coverage testing plugin\n",