Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
test-tools
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
hive
test-tools
Commits
1e51376f
Commit
1e51376f
authored
1 week ago
by
Bartek Wrona
Browse files
Options
Downloads
Patches
Plain Diff
Eliminated var assignments inside assertion statement
parent
772c7505
No related branches found
Branches containing commit
No related tags found
1 merge request
!252
Update to Ubuntu24.04
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/test_tools/__private/executable.py
+2
-1
2 additions, 1 deletion
package/test_tools/__private/executable.py
package/test_tools/__private/node.py
+2
-1
2 additions, 1 deletion
package/test_tools/__private/node.py
with
4 additions
and
2 deletions
package/test_tools/__private/executable.py
+
2
−
1
View file @
1e51376f
...
@@ -43,7 +43,8 @@ class Executable:
...
@@ -43,7 +43,8 @@ class Executable:
def
get_version
(
self
)
->
dict
[
str
,
Any
]:
def
get_version
(
self
)
->
dict
[
str
,
Any
]:
assert
self
.
executable_name
==
"
hived
"
,
"
version can only be checked for hived binary!
"
assert
self
.
executable_name
==
"
hived
"
,
"
version can only be checked for hived binary!
"
assert
isinstance
(
result
:
=
json
.
loads
(
self
.
__run_and_get_output
(
"
--version
"
)),
dict
)
result
=
json
.
loads
(
self
.
__run_and_get_output
(
"
--version
"
))
assert
isinstance
(
result
,
dict
)
return
result
return
result
def
__run_and_get_output
(
self
,
*
arguments
:
str
)
->
str
:
def
__run_and_get_output
(
self
,
*
arguments
:
str
)
->
str
:
...
...
This diff is collapsed.
Click to expand it.
package/test_tools/__private/node.py
+
2
−
1
View file @
1e51376f
...
@@ -115,7 +115,8 @@ class Node(BaseNode, ScopedObject):
...
@@ -115,7 +115,8 @@ class Node(BaseNode, ScopedObject):
@property
@property
def
http_endpoint
(
self
)
->
HttpUrl
:
def
http_endpoint
(
self
)
->
HttpUrl
:
assert
(
endpoint
:
=
self
.
__notifications
.
handler
.
http_endpoint
)
is
not
None
endpoint
=
self
.
__notifications
.
handler
.
http_endpoint
assert
endpoint
is
not
None
return
endpoint
return
endpoint
@http_endpoint.setter
@http_endpoint.setter
...
...
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