Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
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
Container registry
Model registry
Monitor
Service Desk
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
nodes
rust
Duniter v2S
Commits
ed8f67eb
Commit
ed8f67eb
authored
3 years ago
by
Éloïs
Browse files
Options
Downloads
Patches
Plain Diff
fix clippy warning
parent
19c8a946
No related branches found
No related tags found
1 merge request
!16
ci: deploy a docker debug image a each master commit
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
integration-tests/tests/common/mod.rs
+2
-2
2 additions, 2 deletions
integration-tests/tests/common/mod.rs
with
2 additions
and
2 deletions
integration-tests/tests/common/mod.rs
+
2
−
2
View file @
ed8f67eb
...
...
@@ -41,8 +41,8 @@ impl Drop for Process {
}
pub
async
fn
spawn_node
()
->
(
Api
,
Client
,
Process
)
{
let
duniter_binary_path
=
std
::
env
::
var
(
"DUNITER_BINARY_PATH"
)
.unwrap_or
(
"../target/debug/duniter"
.to_owned
());
let
duniter_binary_path
=
std
::
env
::
var
(
"DUNITER_BINARY_PATH"
)
.unwrap_or_else
(|
_
|
"../target/debug/duniter"
.to_owned
());
let
p2p_port
=
portpicker
::
pick_unused_port
()
.expect
(
"No ports free"
);
let
rpc_port
=
portpicker
::
pick_unused_port
()
.expect
(
"No ports free"
);
...
...
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