Skip to content

Commit 7c8014e

Browse files
committed
fix(tests): update warning messages for custom paths
Updated warning messages in conftest.py to indicate the use of custom paths for `cardano-cli` and `cardano-node` instead of nix store paths.
1 parent ba396e9 commit 7c8014e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cardano_node_tests/tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ def pytest_configure(config: tp.Any) -> None:
118118
config.stash[metadata_key]["db-sync exe"] = str(configuration.DBSYNC_BIN)
119119

120120
if "nix/store" not in config.stash[metadata_key]["cardano-cli exe"]:
121-
LOGGER.warning("WARNING: Not using `cardano-cli` from nix store!")
121+
LOGGER.warning(" WARNING: Using `cardano-cli` from custom path!")
122122
if "nix/store" not in config.stash[metadata_key]["cardano-node exe"]:
123-
LOGGER.warning("WARNING: Not using `cardano-node` from nix store!")
123+
LOGGER.warning(" WARNING: Using `cardano-node` from custom path!")
124124

125125

126126
def _skip_all_tests(config: tp.Any, items: list) -> bool:

0 commit comments

Comments
 (0)