features/test-scenarios/scenarios.json
JP Ungaretti e99bc62ea3
Merge JupyterLab feature into Python feature (#40)
* Restructure tools installation

* Tweak bash and zsh config

* Remove extra space

* Update comments

* Add option to install JupyterLab

* Add option to configure JupyterLab

* Add option to install ML packages

* Remove deprecated JuptyerLab feature

* Add new arguments to Python feature

* Remove trailing whitespace

* Organize new arguments

* Resolve feedback

* Create new scenario for JupyterLab

* Fix user in JupyterLab scenario

* Revert changes to Python test

* Remove ML packages

* Update test names

* Rename CORS option
2022-06-08 11:19:31 -07:00

39 lines
1,016 B
JSON

{
"install_python_twice": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"features": [
{
"id": "python",
"options": {
"version": "3.8"
}
},
{
"id": "python",
"options": {
"version": "3.9",
"overrideDefaultVersion": true
}
}
]
},
"install_jupyterlab": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"remoteUser": "vscode",
"features": [
{
"id": "common",
"options": {
"username": "vscode"
}
},
{
"id": "python",
"options": {
"install_jupyterlab": true,
"configure_jupyterlab_allow_origin": "*"
}
}
]
}
}