We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b2832 commit a6d0eb7Copy full SHA for a6d0eb7
.github/workflows/pr-tests.yml
@@ -52,6 +52,7 @@ jobs:
52
run: |
53
python -m pip install --upgrade pip
54
pip install -r requirements.txt
55
+ pip install -r requirements-dev.txt
56
pip install ruff
57
pip install pytest pytest-cov
58
.vscode/settings.json
@@ -2,5 +2,10 @@
2
"prettier.configPath": "./client/.prettierrc.js",
3
"python.analysis.extraPaths": [
4
"./server"
5
- ]
+ ],
6
+ "python.testing.pytestArgs": [
7
+ "server"
8
9
+ "python.testing.unittestEnabled": false,
10
+ "python.testing.pytestEnabled": true
11
}
0 commit comments