diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 000000000..a0a308588 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,7 @@ +coverage: + status: + project: true + patch: true + changes: true + +comment: off diff --git a/doc/en/example/parametrize.rst b/doc/en/example/parametrize.rst index 1e6d53e37..387e3f9de 100644 --- a/doc/en/example/parametrize.rst +++ b/doc/en/example/parametrize.rst @@ -262,8 +262,8 @@ Deferring the setup of parametrized resources The parametrization of test functions happens at collection time. It is a good idea to setup expensive resources like DB connections or subprocess only when the actual test is run. -Here is a simple example how you can achieve that, first -the actual test requiring a ``db`` object: +Here is a simple example how you can achieve that. This test +requires a ``db`` object fixture: .. code-block:: python