Skip to content

Commit ccd8a5b

Browse files
Rename / move files.
1 parent 603127b commit ccd8a5b

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/check_with_mesh_cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
2929
- name: check:data
3030
run: |
31-
PYTHONPATH=. python3 ./systemtests/check.py --mode=data --network=testnet
31+
PYTHONPATH=. python3 ./systemtests/check_with_mesh_cli.py --mode=data --network=testnet
3232
3333
- name: check:construction
3434
run: |
35-
PYTHONPATH=. python3 ./systemtests/check.py --mode=construction --network=testnet
35+
PYTHONPATH=. python3 ./systemtests/check_with_mesh_cli.py --mode=construction --network=testnet
3636
3737
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main() -> int:
2323

2424
process_rosetta = run_rosetta(configuration)
2525
process_adapter = run_proxy_to_observer_adapter(configuration)
26-
process_checker = run_rosetta_checker(mode, configuration)
26+
process_checker = run_mesh_cli(mode, configuration)
2727

2828
# Handle termination signals
2929
def signal_handler(sig: Any, frame: Any):
@@ -84,16 +84,16 @@ def run_proxy_to_observer_adapter(configuration: Configuration):
8484
return subprocess.Popen(command)
8585

8686

87-
def run_rosetta_checker(mode: str, configuration: Configuration):
87+
def run_mesh_cli(mode: str, configuration: Configuration):
8888
if mode == "data":
89-
return run_rosetta_checker_with_check_data(configuration)
89+
return run_mesh_cli_with_check_data(configuration)
9090
elif mode == "construction":
91-
return run_rosetta_checker_with_check_construction(configuration)
91+
return run_mesh_cli_with_check_construction(configuration)
9292
else:
9393
raise ValueError(f"Unknown mode: {mode}")
9494

9595

96-
def run_rosetta_checker_with_check_construction(configuration: Configuration):
96+
def run_mesh_cli_with_check_construction(configuration: Configuration):
9797
"""
9898
E.g.
9999
@@ -112,7 +112,7 @@ def run_rosetta_checker_with_check_construction(configuration: Configuration):
112112
return subprocess.Popen(command)
113113

114114

115-
def run_rosetta_checker_with_check_data(configuration: Configuration):
115+
def run_mesh_cli_with_check_data(configuration: Configuration):
116116
"""
117117
E.g.
118118

systemtests/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ class Configuration:
2222
native_currency="EGLD",
2323
num_historical_epochs=2,
2424
proxy_url="https://devnet-gateway.multiversx.com",
25-
check_construction_configuration_file="systemtests/devnet-construction.json",
26-
check_data_configuration_file="systemtests/check-data.json",
25+
check_construction_configuration_file="systemtests/mesh_cli_config/devnet-construction.json",
26+
check_data_configuration_file="systemtests/mesh_cli_config/check-data.json",
2727
check_data_directory="systemtests/devnet-data",
2828
),
2929
"testnet": Configuration(
@@ -33,8 +33,8 @@ class Configuration:
3333
native_currency="EGLD",
3434
num_historical_epochs=2,
3535
proxy_url="https://testnet-gateway.multiversx.com",
36-
check_construction_configuration_file="systemtests/testnet-construction.json",
37-
check_data_configuration_file="systemtests/check-data.json",
36+
check_construction_configuration_file="systemtests/mesh_cli_config/testnet-construction.json",
37+
check_data_configuration_file="systemtests/mesh_cli_config/check-data.json",
3838
check_data_directory="systemtests/testnet-data",
3939
),
4040
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)