-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deposit/withdrawal test with mainnet enabled
closes #824 Signed-off-by: Evgeniy Zayats <[email protected]>
- Loading branch information
Evgeniy Zayats
committed
Jul 16, 2024
1 parent
f2b1ef5
commit 3e6a889
Showing
12 changed files
with
440 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,5 +38,6 @@ neofs-node | |
neofs-rest-gw | ||
neofs-s3-authmate | ||
neofs-s3-gw | ||
neofs-contract | ||
neofs_env_*.zip | ||
temp_files.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from neofs_testlib.cli.cli_command import CliCommand | ||
from neofs_testlib.shell import CommandResult | ||
|
||
|
||
class NeoGoUtil(CliCommand): | ||
def convert(self, post_data: str) -> CommandResult: | ||
"""Application version. | ||
Returns: | ||
Command's result. | ||
""" | ||
return self._execute( | ||
"util convert", | ||
**{param: param_value for param, param_value in locals().items() if param not in ["self"]}, | ||
) |
Oops, something went wrong.