From ff35eb93b5a4e5366118689865ba83d1fc9135d7 Mon Sep 17 00:00:00 2001 From: Theodor Isacsson Date: Mon, 6 Feb 2023 16:21:57 -0800 Subject: [PATCH] Update coverage command --- .coveragerc | 3 +-- README.rst | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.coveragerc b/.coveragerc index 9371b2d..1054620 100644 --- a/.coveragerc +++ b/.coveragerc @@ -2,8 +2,7 @@ branch = True plugins = Cython.Coverage omit = - dwave/gate/simulator/ops.pxd - dwave/gate/simulator/operation_generation.py + */dwave/gate/simulator/operation_generation.py [report] exclude_lines = diff --git a/README.rst b/README.rst index 6522914..3f00fd7 100644 --- a/README.rst +++ b/README.rst @@ -95,7 +95,7 @@ Tests and coverage can be run using Pytest. .. code-block:: bash - pytest tests/ --cov=dwave.gate + python -m pytest tests/ --cov=dwave.gate .. installation-end-marker