features/test/python/scenarios.json
Alexander Smolyakov 0d2fc3ad5b
[python] Change the sudo_if function to avoid issues with Bash (#694)
* [python] Updated `sudo_if` function

- Remove double quotes to avoid issues with string tokenization

* Add test scenario

* Revert "Add test scenario"

This reverts commit 9e62a3797a.

* Update `jupyterlab git` package name

* Bump feature version

* Test: Install jupyterlab under root user

* Refactor changes

* Bump patch version

* Address review points
2023-09-27 11:51:26 -07:00

78 lines
2.2 KiB
JSON

{
"install_additional_python": {
"image": "ubuntu:focal",
"features": {
"python": {
"version": "3.11",
"additionalVersions": "3.8,3.9.13,3.10.5"
}
}
},
"install_jupyterlab": {
"image": "mcr.microsoft.com/devcontainers/base:focal",
"remoteUser": "vscode",
"features": {
"python": {
"version": "latest",
"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": {
"python": "os-provided"
}
},
"install_jupyterlab_from_python_image": {
"image": "mcr.microsoft.com/devcontainers/python:3.10-bullseye",
"remoteUser": "vscode",
"features": {
"python": {
"version": "none",
"installTools": false,
"installJupyterlab": true
}
}
},
"install_via_oryx": {
"image": "mcr.microsoft.com/oryx/build:full-debian-bullseye",
"features": {
"python": "3.10"
}
},
"install_jupyterlab_debian": {
"image": "debian:bullseye-slim",
"features": {
"python": {
"version": "3.11",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
}
},
"install_jupyterlab_ubuntu": {
"image": "ubuntu:focal",
"features": {
"python": {
"version": "3.11",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
}
}
}