Skip to content

Commit 659219f

Browse files
committed
deps
1 parent e48a950 commit 659219f

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

integration_tests/network.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,12 @@ def setup_custom_cronos(
186186
if wait_port:
187187
wait_for_port(ports.evmrpc_port(base_port))
188188
wait_for_port(ports.evmrpc_ws_port(base_port))
189-
c = Cronos(path / "cronos_777-1", chain_binary=chain_binary or "cronosd")
189+
binary = next(
190+
(b.strip() for b in chain_binary.split(",") if "cronosd" in b),
191+
None,
192+
)
193+
chain_binary = binary if binary else "cronosd"
194+
c = Cronos(path / "cronos_777-1", chain_binary=chain_binary)
190195
w3_wait_for_block(c.w3, 1)
191196
yield c
192197
finally:

integration_tests/poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration_tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ protobuf = "^4.25"
1717
python-dateutil = "^2.8"
1818
web3 = "^6.15"
1919
python-dotenv = "^1.0"
20-
pystarport = { git = "https://github.com/mmsqe/pystarport.git", branch = "fix_cmd" }
20+
pystarport = { git = "https://github.com/crypto-com/pystarport.git", branch = "main" }
2121
websockets = "^12.0"
2222
toml = "^0"
2323
jsonnet = "^0"

integration_tests/test_upgrade_with_ibc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,14 @@ def ibc(tmp_path_factory):
3939
for d in upgrades.iterdir():
4040
d.chmod(mod)
4141

42+
binary = str(upgrades / "genesis/bin/cronosd")
4243
yield from prepare_network(
4344
path,
4445
name,
4546
incentivized=False,
4647
connection_only=True,
4748
post_init=post_init,
48-
chain_binary=str(upgrades / "genesis/bin/cronosd"),
49+
chain_binary=f"chain-maind,{binary}",
4950
relayer=cluster.Relayer.RLY.value,
5051
)
5152

nix/testenv.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ poetry2nix.mkPoetryEnv {
1919
flake8-isort = [ "hatchling" ];
2020
pyunormalize = [ "setuptools" ];
2121
eth-bloom = [ "setuptools" ];
22-
docker = [ "hatchling" "hatch-vcs" ];
22+
docker = [
23+
"hatchling"
24+
"hatch-vcs"
25+
];
2326
};
2427
in
2528
lib.mapAttrs (

0 commit comments

Comments
 (0)