-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
30 lines (30 loc) · 1000 Bytes
/
devcontainer-feature.json
File metadata and controls
30 lines (30 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"id": "pytest",
"version": "2.0.0",
"name": "Pytest (via pipx)",
"documentationURL": "http://github.com/hspaans/devcontainer-features/tree/master/src/pytest",
"licenseURL": "http://github.com/hspaans/devcontainer-features/tree/master/LICENSE",
"description": "The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries.",
"options": {
"version": {
"default": "latest",
"description": "Select the version to install.",
"proposals": [
"latest"
],
"type": "string"
},
"plugins": {
"default": "",
"description": "A space delimitered list of pytest plugins (will be injected into the pytest pipx env). see proposals for examples",
"proposals": [
"pytest-testinfra"
],
"type": "string"
}
},
"installsAfter": [
"ghcr.io/devcontainers-extra/features/pipx-package",
"ghcr.io/devcontainers/features/python"
]
}