Skip to content

Commit a6d0eb7

Browse files
committedMar 3, 2025
ci(workflow): add pip install -r requirements-dev.txt for pr-tests.yml
1 parent c2b2832 commit a6d0eb7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎.github/workflows/pr-tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
run: |
5353
python -m pip install --upgrade pip
5454
pip install -r requirements.txt
55+
pip install -r requirements-dev.txt
5556
pip install ruff
5657
pip install pytest pytest-cov
5758

‎.vscode/settings.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@
22
"prettier.configPath": "./client/.prettierrc.js",
33
"python.analysis.extraPaths": [
44
"./server"
5-
]
5+
],
6+
"python.testing.pytestArgs": [
7+
"server"
8+
],
9+
"python.testing.unittestEnabled": false,
10+
"python.testing.pytestEnabled": true
611
}

0 commit comments

Comments
 (0)
Please sign in to comment.