From 43e90d15c45d6af0a2fb9451a4dad0b810c009ca Mon Sep 17 00:00:00 2001 From: froejdh_e Date: Wed, 25 Jun 2025 11:42:51 +0200 Subject: [PATCH] more info and typo --- docs/src/Tests.rst | 2 +- python/tests/conftest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/Tests.rst b/docs/src/Tests.rst index f264ed2..f6dfce8 100644 --- a/docs/src/Tests.rst +++ b/docs/src/Tests.rst @@ -25,7 +25,7 @@ Python .. code-block:: bash #From the root dir of the library - python -m pytest python/tests --with-data # passing --with-dat will run the tests needing data + python -m pytest python/tests --with-data # passing --with-data will run the tests needing data diff --git a/python/tests/conftest.py b/python/tests/conftest.py index 38824f0..a6809ee 100644 --- a/python/tests/conftest.py +++ b/python/tests/conftest.py @@ -6,7 +6,7 @@ import pytest def pytest_addoption(parser): parser.addoption( - "--with-data", action="store_true", default=False, help="run slow tests" + "--with-data", action="store_true", default=False, help="Run tests that require additional data" )