We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4458b commit 1edd047Copy full SHA for 1edd047
tests/python_tests/conftest.py
@@ -139,3 +139,5 @@ def download_test_content(request):
139
if os.path.exists(file_path):
140
logger.info(f"Removing test content: {file_path}")
141
os.remove(file_path)
142
+
143
+download_mask_image = download_test_content
tests/python_tests/samples/conftest.py
@@ -186,10 +186,6 @@ def download_model(request):
186
logger.info(f"Removing converted model: {model_cache}")
187
shutil.rmtree(model_cache)
188
189
-@pytest.fixture
190
-def download_mask_image(request):
191
- return request.getfixturevalue("download_test_content")
192
-
193
@pytest.fixture(scope="session")
194
def generate_test_content(request):
195
"""Generate an image of lines and return the file path."""
0 commit comments