Skip to content

Commit 302692c

Browse files
committed
fix: install optional deps on Linux for coverage
1 parent ec51ca0 commit 302692c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ jobs:
114114
python -m pip install --upgrade pip
115115
pip install -e .[dev]
116116
117+
- name: Install Optional Dependencies (Linux only for coverage)
118+
if: runner.os == 'Linux'
119+
run: |
120+
pip install -e .[full]
121+
117122
- name: Run Tests with Coverage
118123
shell: bash
119124
run: |

0 commit comments

Comments
 (0)