diff options
Diffstat (limited to 'test/python/scenarios.json')
-rw-r--r-- | test/python/scenarios.json | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/test/python/scenarios.json b/test/python/scenarios.json index 2aa246f..9df8d72 100644 --- a/test/python/scenarios.json +++ b/test/python/scenarios.json @@ -9,18 +9,27 @@ } }, "install_jupyterlab": { - "image": "mcr.microsoft.com/vscode/devcontainers/base:focal", + "image": "mcr.microsoft.com/devcontainers/base:focal", "remoteUser": "vscode", "features": { - "common-utils": { - "username": "vscode" - }, "python": { "installJupyterlab": true, "configureJupyterlabAllowOrigin": "*" } } }, + "install_additional_jupyterlab": { + "image": "mcr.microsoft.com/devcontainers/base:focal", + "remoteUser": "vscode", + "features": { + "python": { + "version": "latest", + "additionalVersions": "3.9", + "installJupyterlab": true, + "configureJupyterlabAllowOrigin": "*" + } + } + }, "install_os_provided_python": { "image": "mcr.microsoft.com/devcontainers/base:0-bullseye", "features": { |