From a28f36f2bfa90badbf22c0f26baa0fffbcede6bc Mon Sep 17 00:00:00 2001 From: Gurleen Kaur <174241618+Gurleen-kansray@users.noreply.github.com> Date: Tue, 18 Nov 2025 05:59:44 +0530 Subject: [PATCH] Fix em-dash in pytest command in contribution docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced the incorrect em-dash (–) before the verbose argument with the correct double hyphen (--verbose). This fixes a broken pytest command in the testing section of the contribution page. Fixes #24. --- doc/source/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst index d46564d..dc9a422 100644 --- a/doc/source/contributing.rst +++ b/doc/source/contributing.rst @@ -89,7 +89,7 @@ To run tests, first install the test requirements seen in the previous section, .. code:: bash - pytest --cov="\Lib\site-packages\ansys\api\lumerical" --cov="\tests\unit" --cov-report=html:coverage_report –verbose + pytest --cov="\Lib\site-packages\ansys\api\lumerical" --cov="\tests\unit" --cov-report=html:coverage_report –-verbose Replace ```` with the path to your virtual environment, and ```` with the path to your local PyLumerical repository.