README.md 375 Bytes
Newer Older
chenzk's avatar
v1.0.8  
chenzk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Debugging the tests with vscode

To debug the tests with vscode, add the following json to your `launch.json` file.

```
{
    "name": "Test conversion",
    "type": "python",
        "request": "launch",
        "module": "pytest",
        "console": "integratedTerminal",
        "args": [
            "examples/llama/tests"
        ],
        "justMyCode": false
}
```