fix: fixes syntax bug introduced in #5

This commit is contained in:
gnikit 2022-07-29 20:13:15 +01:00
parent eccba11833
commit a68ea222ad
No known key found for this signature in database
GPG Key ID: E9A03930196133F0

View File

@ -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",