features/test-scenarios/scenarios.json
Samruddhi Khandale 7f551f8c2f
Python: Install additional versions (#58)
* additional install

* update test

* nit

* fix test

Co-authored-by: Josh Spicer <joshspicer@github.com>
2022-07-01 14:51:06 -04:00

34 lines
849 B
JSON

{
"install_jupyterlab": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"remoteUser": "vscode",
"features": {
"common": {
"username": "vscode"
},
"python": {
"install_jupyterlab": true,
"configure_jupyterlab_allow_origin": "*"
}
}
},
"install_additional_python": {
"image": "ubuntu:focal",
"features": {
"python": {
"version": "3.10.5",
"additional_versions": "3.8,3.9.13"
}
}
},
"install_additional_ruby": {
"image": "ubuntu:focal",
"features": {
"ruby": {
"version": "3.1.2",
"additional_versions": "2.5,3.0.4"
}
}
}
}