Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mednet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
medai
software
mednet
Commits
ef8357ee
Commit
ef8357ee
authored
5 months ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[tests.segment] Fix config-name for database checks
parent
bba188be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!64
Add object detection
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/segment/test_montgomery.py
+1
-1
1 addition, 1 deletion
tests/segment/test_montgomery.py
tests/segment/test_shenzhen.py
+1
-1
1 addition, 1 deletion
tests/segment/test_shenzhen.py
with
2 additions
and
2 deletions
tests/segment/test_montgomery.py
+
1
−
1
View file @
ef8357ee
...
...
@@ -42,7 +42,7 @@ def test_database_check():
from
mednet.scripts.database
import
check
runner
=
CliRunner
()
result
=
runner
.
invoke
(
check
,
[
"
montgomery
"
])
result
=
runner
.
invoke
(
check
,
[
"
montgomery
-segment
"
])
assert
(
result
.
exit_code
==
0
),
f
"
Exit code
{
result
.
exit_code
}
!= 0 -- Output:
\n
{
result
.
output
}
"
...
...
This diff is collapsed.
Click to expand it.
tests/segment/test_shenzhen.py
+
1
−
1
View file @
ef8357ee
...
...
@@ -42,7 +42,7 @@ def test_database_check():
from
mednet.scripts.database
import
check
runner
=
CliRunner
()
result
=
runner
.
invoke
(
check
,
[
"
--limit=20
"
,
"
shenzhen
"
])
result
=
runner
.
invoke
(
check
,
[
"
--limit=20
"
,
"
shenzhen
-segment
"
])
assert
(
result
.
exit_code
==
0
),
f
"
Exit code
{
result
.
exit_code
}
!= 0 -- Output:
\n
{
result
.
output
}
"
...
...
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