diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 207d227e..53fa20e8 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,14 +14,10 @@ }, "markdown-preview-github-styles.colorTheme": "light", "makefile.extensionOutputFolder": "/tmp", - "python.testing.pytestEnabled": false, - "python.testing.unittestEnabled": true, - "python.testing.unittestArgs": [ - "-v", - "-s", - "./tests", - "-p", - "test*.py" + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "python.testing.pytestArgs": [ + "tests" ], "files.exclude": { "**/.git": true, @@ -30,7 +26,7 @@ "**/__pycache__": true, "**/.pytest_cache": true } - }, + }, "extensions": [ "ms-python.python", "ms-python.vscode-pylance", @@ -54,6 +50,6 @@ "ms-azuretools.vscode-docker" ] } - }, + } // "postCreateCommand": "" }