File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed
Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " Python" ,
3+ "image" : " mcr.microsoft.com/devcontainers/python:latest" ,
4+ "features" : {
5+ "azure-cli" : " latest" ,
6+ "git" : " latest"
7+ },
8+ "customizations" : {
9+ "vscode" : {
10+ "settings" : {
11+ "files.insertFinalNewline" : true ,
12+ "files.trimTrailingWhitespace" : true
13+ },
14+ "extensions" : [
15+ " ms-python.python"
16+ ]
17+ }
18+ }
19+ }
Original file line number Diff line number Diff line change 1+ # Development
2+
3+ ## VSCode Setup
4+
5+ To set up VSCode for development:
6+
7+ 1 . start the editor with the Python devcontainer
8+
9+ 1 . install the dependencies:
10+
11+ ``` bash
12+ # the _version.py file is generated and may need to be removed
13+ rm python-gpt-po/_version.py
14+
15+ python -m pip install -e .
16+ ```
17+
18+ # # Running the Tests
19+
20+ ` ` ` bash
21+ python -m pytest
22+ ` ` `
You can’t perform that action at this time.
0 commit comments