diff --git a/.dockerignore b/.dockerignore index 0d2141b..68083ed 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,6 +1,6 @@ .gitea/ .venv/ - +./bin/ # Python bytecode __pycache__/ *.py[cod] diff --git a/tests/integration_full_workflow_test.py b/tests/integration_full_workflow_test.py index 9a80c1b..4819cbc 100644 --- a/tests/integration_full_workflow_test.py +++ b/tests/integration_full_workflow_test.py @@ -31,7 +31,7 @@ if not os.getenv("INTEGRATION_TEST"): # Prefer local ./bin/ executables for integration runs when available. # Set environment variables before importing TempConfig so its class attributes # pick up these overridden paths. -bin_dir = REPO_ROOT / "bin" +bin_dir = REPO_ROOT / "bin" / "linux" if bin_dir.exists(): ytdlp_path = bin_dir / "yt-dlp" if ytdlp_path.exists():