I'm exploring devcontainer by contributing to the fish
feature and adding an option to provide a list of fisher plugin to install.
Using the following command, run all tests and scenario tests. But that can took some time.
devcontainer features test \
--features {{feature}} \
--base-image {{image}} .
Scenario
I got the following scenarios in ./test/fish/scenarios.json
:
{
"alpine_with_fisher_single_plugin": {
"image": "mcr.microsoft.com/devcontainers/base:alpine",
"features": {
"fish": {
"fisher_plugins": "jorgebucaran/fishtape"
}
}
},
"alpine_with_fisher_multiple_plugins": {
"image": "mcr.microsoft.com/devcontainers/base:alpine",
"features": {
"fish": {
"fisher_plugins": "jorgebucaran/fishtape pure-fish/pure"
}
}
}
}
Question
How could I target a single scenario, for instance alpine_with_fisher_multiple_plugins
?