From 44bfdade54f56f3d8e4ac82bde5f4ab3e60fc62d Mon Sep 17 00:00:00 2001 From: Adrian Vollmer Date: Sun, 28 Apr 2024 15:15:11 +0200 Subject: [PATCH] Minor fixes in tests --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 7b6a08a..4290528 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -51,7 +51,7 @@ def selenium_drivers(docker_ip, docker_services): options = webdriver.FirefoxOptions() drivers[browser] = webdriver.Remote( - command_executor=f"http://localhost:4444/wd/hub", + command_executor="http://localhost:4444/wd/hub", options=options, ) @@ -73,5 +73,5 @@ def run_make_commands(request): .venv/bin/sphinx-build -M zundler . _build """ - for d in ["copy-button", "mermaid", "multi-page"]: + for d in ["copy-button", "mermaid", "multi-page", "dark-mode"]: subprocess.run(cmd.strip(), shell=True, check=True, cwd=Path(test_dir) / d)