aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Spicer <joshspicer@github.com>2022-06-30 04:25:28 +0300
committerGitHub <noreply@github.com>2022-06-30 04:25:28 +0300
commit1c9ce8370da7b1d19a646426295eaba447068e78 (patch)
tree1a1827b788269dc1b5268d88cdc7820648e9cb30
parentb3ca7988eeec062d924f5ac2567659a33cd25131 (diff)
update scenario to object notatio0n
-rw-r--r--test-scenarios/scenarios.json38
1 files changed, 7 insertions, 31 deletions
diff --git a/test-scenarios/scenarios.json b/test-scenarios/scenarios.json
index bbb61e7..d07dda9 100644
--- a/test-scenarios/scenarios.json
+++ b/test-scenarios/scenarios.json
@@ -1,39 +1,15 @@
{
- "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"
- }
+ "features": {
+ "common": {
+ "username": "vscode"
},
- {
- "id": "python",
- "options": {
- "install_jupyterlab": true,
- "configure_jupyterlab_allow_origin": "*"
- }
+ "python": {
+ "install_jupyterlab": true,
+ "configure_jupyterlab_allow_origin": "*"
}
- ]
+ }
}
} \ No newline at end of file