1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-01 19:45:22 +02:00
mealie/tests/test_config.py

17 lines
427 B
Python

from pathlib import Path
CWD = Path(__file__).parent
TEST_DIR = CWD
TEST_DATA = CWD.joinpath("data")
# Scraper
TEST_RAW_HTML = TEST_DATA.joinpath("scraper", "html-raw")
TEST_RAW_RECIPES = TEST_DATA.joinpath("scraper", "recipes-raw")
# Migrations
TEST_CHOWDOWN_DIR = TEST_DATA.joinpath("migrations", "chowdown")
TEST_NEXTCLOUD_DIR = TEST_DATA.joinpath("migrations", "nextcloud")
TEST_HTML_DIR = TEST_DATA.joinpath("html")