more info and typo

This commit is contained in:
froejdh_e
2025-06-25 11:42:51 +02:00
parent 5d092639a8
commit 43e90d15c4
2 changed files with 2 additions and 2 deletions

View File

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

View File

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