Skip to content

Commit

Permalink
add logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kkappler committed Jun 6, 2024
1 parent be3e7dc commit 88c8d3f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_general_helper_functions.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import logging
import pathlib
import unittest

from aurora.general_helper_functions import count_lines
from aurora.general_helper_functions import DotDict
from aurora.general_helper_functions import get_mth5_ascii_data_path
from aurora.general_helper_functions import get_test_path
from loguru import logger

TEST_PATH = get_test_path()

Expand Down Expand Up @@ -47,6 +47,9 @@ def test_get_mth5_ascii_data_path(self):
mth5_data_path = get_mth5_ascii_data_path()
ascii_file_paths = list(mth5_data_path.glob("*asc"))
file_names = [x.name for x in ascii_file_paths]
logger.info(f"mth5_data_path = {mth5_data_path}")
logger.info(f"file_names = {file_names}")

assert "test1.asc" in file_names
assert "test2.asc" in file_names

Expand Down

0 comments on commit 88c8d3f

Please sign in to comment.