From 967b8e2bbfc2696125caf5510e10f4dc5ef26917 Mon Sep 17 00:00:00 2001 From: "Aaron (AJ) Steers" Date: Sat, 26 Aug 2023 05:43:23 +0000 Subject: [PATCH] fix: pytest path in web codespace --- .devcontainer/destination-duckdb/devcontainer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.devcontainer/destination-duckdb/devcontainer.json b/.devcontainer/destination-duckdb/devcontainer.json index 5e581c2325cb..d120c7330d92 100644 --- a/.devcontainer/destination-duckdb/devcontainer.json +++ b/.devcontainer/destination-duckdb/devcontainer.json @@ -27,7 +27,10 @@ "extensions.ignoreRecommendations": true, "python.defaultInterpreterPath": ".venv/bin/python", "python.interpreter.infoVisibility": "always", - "git.openRepositoryInParentFolders": "always" + "git.openRepositoryInParentFolders": "always", + "python.terminal.activateEnvironment": true, + "python.testing.cwd": "/workspaces/airbyte/airbyte-integrations/connectors/destination-duckdb", + "python.testing.pytestArgs": ["--rootdir=/workspaces/airbyte/airbyte-integrations/connectors/destination-duckdb"] } } },