features/test-scenarios/scenarios.json

39 lines
1,016 B
JSON
Raw Normal View History

2022-06-01 00:40:22 +03:00
{
"install_python_twice": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"features": [
{
"id": "python",
"options": {
"version": "3.8"
}
2022-06-01 00:40:22 +03:00
},
{
"id": "python",
"options": {
"version": "3.9",
"overrideDefaultVersion": true
}
2022-06-01 00:40:22 +03:00
}
]
},
"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": "*"
}
}
]
2022-06-01 00:40:22 +03:00
}
}