Skip to content

Commit d1e3683

Browse files
stewartfrancisAndrewTwydell
authored andcommitted
devcontainer support
1 parent d8426eb commit d1e3683

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ docs/build/
33
.idea
44
__pycache__
55
venv*
6+
.venv
67
tests/output
78
ibm-ibm_zos_cics-*.tar.gz
89
tests/integration/targets/cics_cmci/cmci-variables.yml

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "ansible-test",
9+
"type": "python",
10+
"request": "launch",
11+
"program": ".venv/bin/ansible-test",
12+
"console": "integratedTerminal",
13+
"justMyCode": true,
14+
"args": ["integration", "cics_cmci"]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)