Skip to content

Commit

Permalink
Merge pull request #2867 from IntersectMBO/clarify_warn
Browse files Browse the repository at this point in the history
fix(tests): update warning messages for custom paths
  • Loading branch information
mkoura authored Jan 2, 2025
2 parents ba396e9 + 7c8014e commit a9a979d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cardano_node_tests/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def pytest_configure(config: tp.Any) -> None:
config.stash[metadata_key]["db-sync exe"] = str(configuration.DBSYNC_BIN)

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


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

0 comments on commit a9a979d

Please sign in to comment.