enable pytest in vscode and mention it in README

pull/16/head
scito 2 years ago
parent fb4cee14da
commit fbde835601

@ -122,3 +122,12 @@ Run tests:
``` ```
python -m unittest python -m unittest
``` ```
### VSCode Setup
Setup for running the tests in VSCode.
1. Open VSCode command palette (Ctrl-Shift-P)
2. Type command "Python: Configure Tests"
3. Choose unittest or pytest. (pytest is recommended, both are supported)
4. Set ". Root" directory

@ -3,5 +3,8 @@
{ {
"path": "." "path": "."
} }
] ],
"settings": {
"python.testing.pytestEnabled": true
}
} }
Loading…
Cancel
Save