Run tests with coverage.
(
session: nox.Session, database: str, cext: str, backendonly: str
)
| 163 | base_tag="coverage", |
| 164 | ) |
| 165 | def coverage( |
| 166 | session: nox.Session, database: str, cext: str, backendonly: str |
| 167 | ) -> None: |
| 168 | """Run tests with coverage.""" |
| 169 | |
| 170 | _tests( |
| 171 | session, |
| 172 | database, |
| 173 | cext, |
| 174 | timing_intensive=False, |
| 175 | backendonly=backendonly == "backendonly", |
| 176 | coverage=True, |
| 177 | ) |
| 178 | |
| 179 | |
| 180 | @nox.session(name="github-cext-greenlet") |