Skip to content
Snippets Groups Projects
Commit 518a7cbd authored by Eva Bardou's avatar Eva Bardou :frog: Committed by Yoann Schneider
Browse files

Replace `pytest-lazy-fixture` with `pytest-lazy-fixtures`

parent 19536547
No related branches found
No related tags found
1 merge request!127Replace `pytest-lazy-fixture` with `pytest-lazy-fixtures`
Pipeline #160952 passed
......@@ -4,6 +4,7 @@ import os
import pytest
from huggingface_hub.utils import RepositoryNotFoundError, RevisionNotFoundError
from pytest_lazy_fixtures import lf as lazy_fixture
from doc_ufcn import models
......@@ -16,7 +17,7 @@ from doc_ufcn import models
"generic-page",
"main",
"~/.cache/doc-ufcn/models/generic-page/models--Teklia--doc-ufcn-generic-page/snapshots/ef5519d77baa190bfe294ad3994146dbe7e72095",
pytest.lazy_fixture("test_parameters"),
lazy_fixture("test_parameters"),
True,
),
# Correct fullname and version
......@@ -24,7 +25,7 @@ from doc_ufcn import models
"doc-ufcn-generic-page",
"main",
"~/.cache/doc-ufcn/models/generic-page/models--Teklia--doc-ufcn-generic-page/snapshots/ef5519d77baa190bfe294ad3994146dbe7e72095",
pytest.lazy_fixture("test_parameters"),
lazy_fixture("test_parameters"),
True,
),
# Correct name and incorrect version
......@@ -34,7 +35,7 @@ from doc_ufcn import models
"generic-page",
None,
"~/.cache/doc-ufcn/models/generic-page/models--Teklia--doc-ufcn-generic-page/snapshots/ef5519d77baa190bfe294ad3994146dbe7e72095",
pytest.lazy_fixture("test_parameters"),
lazy_fixture("test_parameters"),
True,
),
# Incorrect name and incorrect version
......
......@@ -2,6 +2,7 @@
import numpy as np
import pytest
from pytest_lazy_fixtures import lf as lazy_fixture
from doc_ufcn import prediction
......@@ -313,8 +314,8 @@ def test_resize_predicted_polygons(
(
{1: []},
None,
pytest.lazy_fixture("test_image"),
pytest.lazy_fixture("test_image"),
lazy_fixture("test_image"),
lazy_fixture("test_image"),
),
(
{
......@@ -357,8 +358,8 @@ def test_resize_predicted_polygons(
],
},
None,
pytest.lazy_fixture("test_image"),
pytest.lazy_fixture("test_masked_image"),
lazy_fixture("test_image"),
lazy_fixture("test_masked_image"),
),
],
)
......
......@@ -7,7 +7,7 @@ commands =
deps =
pytest
pytest-lazy-fixture
pytest-lazy-fixtures
-rrequirements.txt
-rtraining-requirements.txt
-rtest-requirements.txt
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment