We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a378a61 commit a2a6bc9Copy full SHA for a2a6bc9
2 files changed
.github/workflows/ci.yml
@@ -112,12 +112,7 @@ jobs:
112
- name: Install Dependencies
113
run: |
114
python -m pip install --upgrade pip
115
- pip install -e .[dev]
116
-
117
- - name: Install Optional Dependencies (Linux only for coverage)
118
- if: runner.os == 'Linux'
119
- run: |
120
- pip install -e .[full]
+ pip install -e ".[dev,full]"
121
122
- name: Run Tests with Coverage
123
shell: bash
@@ -126,7 +121,6 @@ jobs:
126
--cov-report=term-missing --cov-branch --junitxml=test-results.xml
127
128
- name: Coverage report with threshold
129
130
124
131
125
coverage report --fail-under=80
132
0 commit comments