aboutsummaryrefslogtreecommitdiff
path: root/test/python/scenarios.json
diff options
context:
space:
mode:
Diffstat (limited to 'test/python/scenarios.json')
-rw-r--r--test/python/scenarios.json23
1 files changed, 21 insertions, 2 deletions
diff --git a/test/python/scenarios.json b/test/python/scenarios.json
index 2aa246f..561d8f6 100644
--- a/test/python/scenarios.json
+++ b/test/python/scenarios.json
@@ -1,4 +1,18 @@
{
+ "install_jupyterlab_2": {
+ "image": "mcr.microsoft.com/vscode/devcontainers/python:latest",
+ "remoteUser": "vscode",
+ "features": {
+ "common-utils": {
+ "username": "vscode"
+ },
+ "python": {
+ "version": "none",
+ "installJupyterlab": true,
+ "configureJupyterlabAllowOrigin": "*"
+ }
+ }
+ },
"install_additional_python": {
"image": "ubuntu:focal",
"features": {
@@ -16,6 +30,7 @@
"username": "vscode"
},
"python": {
+ "version": "latest",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
@@ -25,7 +40,11 @@
"image": "mcr.microsoft.com/devcontainers/base:0-bullseye",
"features": {
"node": "latest",
- "python": "os-provided"
+ "python": {
+ "version": "os-provided",
+ "installJupyterlab": true,
+ "configureJupyterlabAllowOrigin": "*"
+ }
}
}
-} \ No newline at end of file
+}