We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
coverage
1 parent c6037c7 commit 097709bCopy full SHA for 097709b
noxfile.py
@@ -223,6 +223,22 @@ def pinned_requirements(path: Path) -> Iterator[Tuple[str, str]]:
223
release.commit_file(session, ".", message=message)
224
225
226
+
227
+@nox.session
228
+def coverage(session: nox.Session):
229
+ session.run(
230
+ "python",
231
+ "-c",
232
+ "'import os, sys; os.path.exists(sys.argv[1]) or os.mkdir(sys.argv[1])'",
233
+ "./.coverage-output"
234
+ )
235
236
+ "pytest",
237
+ "--cov=pip",
238
+ "--cov-config=./setup.cfg"
239
240
241
242
# -----------------------------------------------------------------------------
243
# Release Commands
244
0 commit comments