We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c39a49 commit 3451ed9Copy full SHA for 3451ed9
1 file changed
noxfile.py
@@ -180,7 +180,10 @@ def tests(session: Session) -> None:
180
session.notify("coverage", posargs=[])
181
182
183
-@session(python=python_versions[0])
+
184
+# We must pass `--clear` due to different session options during pipeline runs
185
+# https://github.com/TGSAI/mdio-python/blob/3d01a6d8c93cabeaeff1829599327ae83c7d6593/.github/workflows/tests.yml#L123-L130
186
+@session(python=python_versions[0], venv_params=["--clear"])
187
def coverage(session: Session) -> None:
188
"""Produce the coverage report."""
189
args = session.posargs or ["report"]
0 commit comments