From d8c2ab5a061f479f6416df6bc0f3357decafb78e Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Tue, 23 Jun 2020 18:33:08 +0100 Subject: [PATCH] BUILD: make tests discoverable in .devcontainer.json (#34929) --- .devcontainer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.devcontainer.json b/.devcontainer.json index 315a1ff647012..8bea96aea29c1 100644 --- a/.devcontainer.json +++ b/.devcontainer.json @@ -17,7 +17,9 @@ "python.linting.pylintEnabled": false, "python.linting.mypyEnabled": true, "python.testing.pytestEnabled": true, - "python.testing.cwd": "pandas/tests" + "python.testing.pytestArgs": [ + "pandas" + ] }, // Add the IDs of extensions you want installed when the container is created in the array below.