diff options
author | Josh Spicer <joshspicer@github.com> | 2022-08-26 18:16:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 18:16:03 +0300 |
commit | e43c0de31910f8ad04bdcd92999ebbfeaeb3da9b (patch) | |
tree | d9ad2c4f47315725f849e36792733386a6a04c66 | |
parent | 41e3e4c748f276ebf6b7bfee127f931eca98fd8d (diff) |
update readme (skip ci) (#117)
- remove `test-scenarios` folder in favor of feature-scoped scenarios
-rw-r--r-- | README.md | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -88,15 +88,13 @@ devcontainer build --workspace-folder <path-to-my-project-with-devcontainer> ├── 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 <path-to-my-project-with-devcontainer> - [`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 |