Skip to content

Commit 392f18c

Browse files
committed
Fix Windows dependency installation in CI
- Use pip install -e '.[dev]' to install all dependencies - This installs both runtime deps (click, pyyaml, python-dotenv) and dev deps (pytest, pytest-cov, etc.) in one command - Fixes ModuleNotFoundError: No module named 'click' on Windows - Ensures consistent dependency installation across platforms
1 parent 3f5e279 commit 392f18c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
run: |
2828
python -m pip install --upgrade pip
2929
python -m pip install wheel setuptools
30-
pip install -e .
31-
pip install pytest pytest-cov pytest-mock freezegun
30+
pip install -e ".[dev]"
3231
3332
- name: Run tests with coverage
3433
run: |

0 commit comments

Comments
 (0)