From 5a515e9627fbc3f135485294ca25cf5dba0185f2 Mon Sep 17 00:00:00 2001 From: Hans Keeler Date: Wed, 18 Oct 2023 18:45:39 -0400 Subject: [PATCH] Fix path to `tests` dir in DevContainer setup --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6fc52aad..9656043b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -49,7 +49,7 @@ "python.testing.unittestEnabled": false, "python.testing.pytestArgs": [ "--rootdir", - "${workspaceFolder}/src/tests" + "${workspaceFolder}/tests" ] } }