Skip to content

Commit 02ecdc6

Browse files
committed
debug
1 parent 9ffb4aa commit 02ecdc6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

noxfile.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,13 @@ def tests(session: nox.Session) -> None:
4242
if random_order:
4343
deps.append("pytest-randomly")
4444

45-
session.install(*deps)
46-
session.install("-e", ".[test]")
45+
session.install("-v", *deps)
46+
session.install("-v", "-e", ".[test]")
4747
if cryptography_version == "main":
48-
session.install("git+https://github.com/pyca/cryptography.git")
48+
session.install("-v", "git+https://github.com/pyca/cryptography.git")
4949

5050
session.run("openssl", "version", external=True)
51+
session.run("python", "-m", "OpenSSL.debug")
5152
session.run("coverage", "run", "--parallel", "-m", "OpenSSL.debug")
5253
session.run(
5354
"coverage", "run", "--parallel", "-m", "pytest", "-v", *session.posargs

0 commit comments

Comments
 (0)