From e43c0de31910f8ad04bdcd92999ebbfeaeb3da9b Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Fri, 26 Aug 2022 11:16:03 -0400 Subject: [PATCH] update readme (skip ci) (#117) - remove `test-scenarios` folder in favor of feature-scoped scenarios --- README.md | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index fb14c38..831fc63 100644 --- a/README.md +++ b/README.md @@ -88,15 +88,13 @@ devcontainer build --workspace-folder ├── test │ ├── dotnet │ │ └── test.sh -│ └── go +│ ├── go +| | ├── scenarios.json +| | ├── test_scenario_1.json │ | └── test.sh | ├── ... │ │ └── test.sh -├── test-scenarios -│ ├── install_jupyterlab.sh -│ ├── install_python_twice.sh -| ├── ... -│ └── scenarios.json +... ``` - [`src`](src) - A collection of subfolders, each declaring a feature. Each subfolder contains at least a @@ -104,9 +102,6 @@ devcontainer build --workspace-folder - [`test`](test) - Mirroring `src`, a folder-per-feature with at least a `test.sh` script. The [`devcontainer` CLI](https://github.com/devcontainers/cli) will execute [these tests in CI](https://github.com/devcontainers/features/blob/main/.github/workflows/test-all.yaml). -- [`test-scenarios`](test-scenarios) - More complex scenarios involving a set of features from this repo. The - [`devcontainer` CLI](https://github.com/devcontainers/cli) will execute - [these tests in CI](https://github.com/devcontainers/features/blob/main/.github/workflows/test-scenarios.yaml). ## Contributions