system independent path separators; pytest for windows fixes

This commit is contained in:
shukari
2025-08-07 12:05:43 +02:00
parent a79e17a575
commit 4b143030d3
4 changed files with 29 additions and 20 deletions

View File

@@ -2,6 +2,7 @@
import argparse
import logging
from pathlib import Path
from typing import cast, List
import dash_bootstrap_components as dbc # type: ignore[import-untyped]
@@ -190,7 +191,7 @@ def main():
parser = create_argparser()
args = parser.parse_args()
if not args.slog:
args.slog = f"{root_dir()}/latest"
args.slog = str(Path(root_dir(), "latest"))
app = create_dash(slog_path=args.slog)
port = 8051