Skip to content

Commit 30da656

Browse files
committed
fix: remove link artifacts in pytest docstring
1 parent 2abd8be commit 30da656

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sdk/python/tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,10 @@ def pytest_generate_tests(metafunc: pytest.Metafunc):
265265
266266
See more examples at https://docs.pytest.org/en/6.2.x/example/parametrize.html#paramexamples
267267
268-
We also utilize indirect parametrization here. Since [environment](cci:1://file:///c:/Users/brass/OneDrive/Desktop/Work/App/Lanre/feast/sdk/python/tests/conftest.py:229:0-245:16) is a fixture,
268+
We also utilize indirect parametrization here. Since `environment` is a fixture,
269269
when we call metafunc.parametrize("environment", ..., indirect=True) we actually
270270
parametrizing this "environment" fixture and not the test itself.
271-
Moreover, by utilizing `_config_cache` we are able to share [environment](cci:1://file:///c:/Users/brass/OneDrive/Desktop/Work/App/Lanre/feast/sdk/python/tests/conftest.py:229:0-245:16) fixture between different tests.
271+
Moreover, by utilizing `_config_cache` we are able to share `environment` fixture between different tests.
272272
In order for pytest to group tests together (and share environment fixture)
273273
parameter should point to the same Python object (hence, we use _config_cache dict to store those objects).
274274
"""

0 commit comments

Comments
 (0)