Skip to content

Commit

Permalink
fix(tests): update warning messages for custom paths
Browse files Browse the repository at this point in the history
Updated warning messages in conftest.py to indicate the use of
custom paths for `cardano-cli` and `cardano-node` instead of
nix store paths.
  • Loading branch information
mkoura committed Jan 2, 2025
1 parent ba396e9 commit 7c8014e
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 7c8014e

Please sign in to comment.