Skip to content

Commit a0d2882

Browse files
committed
Fix pip install command syntax for test dependencies in GitHub Actions workflow
1 parent c768160 commit a0d2882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install pytest>=7.0.0,<8.0.0 pytest-cov>=4.1.0,<5.0.0 pytest-mock>=3.10.0
25+
pip install pytest "pytest>=7.0.0,<8.0.0" "pytest-cov>=4.1.0,<5.0.0" "pytest-mock>=3.10.0"
2626
pip install -e ".[test]"
2727
2828
- name: Run tests

0 commit comments

Comments
 (0)