mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-06-04 14:15:24 -04:00
18 lines
427 B
Python
18 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")
|