From 6bd8caea3ce406564c916f671b5bc9e4cb7b0c1c Mon Sep 17 00:00:00 2001 From: goubera Date: Fri, 5 Sep 2025 00:07:20 +0200 Subject: [PATCH] Move smoke test into package tests directory --- {tests => solana-meme-top10-collector/tests}/test_smoke.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename {tests => solana-meme-top10-collector/tests}/test_smoke.py (81%) diff --git a/tests/test_smoke.py b/solana-meme-top10-collector/tests/test_smoke.py similarity index 81% rename from tests/test_smoke.py rename to solana-meme-top10-collector/tests/test_smoke.py index c9a111c..0e86e1a 100644 --- a/tests/test_smoke.py +++ b/solana-meme-top10-collector/tests/test_smoke.py @@ -2,8 +2,8 @@ import pandas as pd # ensure collector module path -ROOT = pathlib.Path(__file__).resolve().parents[1] -sys.path.append(str(ROOT / "solana-meme-top10-collector")) +COLLECTOR_DIR = pathlib.Path(__file__).resolve().parents[1] +sys.path.append(str(COLLECTOR_DIR)) import collector