Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Doc-UFCN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Document Layout Analysis
Doc-UFCN
Commits
518a7cbd
Commit
518a7cbd
authored
1 year ago
by
Eva Bardou
Committed by
Yoann Schneider
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Replace `pytest-lazy-fixture` with `pytest-lazy-fixtures`
parent
19536547
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!127
Replace `pytest-lazy-fixture` with `pytest-lazy-fixtures`
Pipeline
#160952
passed
1 year ago
Stage: test
Stage: build
Stage: release
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tests/test_models.py
+4
-3
4 additions, 3 deletions
tests/test_models.py
tests/test_prediction.py
+5
-4
5 additions, 4 deletions
tests/test_prediction.py
tox.ini
+1
-1
1 addition, 1 deletion
tox.ini
with
10 additions
and
8 deletions
tests/test_models.py
+
4
−
3
View file @
518a7cbd
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
tests/test_prediction.py
+
5
−
4
View file @
518a7cbd
...
...
@@ -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
"
),
),
],
)
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
1
View file @
518a7cbd
...
...
@@ -7,7 +7,7 @@ commands =
deps
=
pytest
pytest-lazy-fixture
pytest-lazy-fixture
s
-rrequirements.txt
-rtraining-requirements.txt
-rtest-requirements.txt
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment