Skip to content

Commit 38af2c6

Browse files
committed
debug
1 parent 9ffb4aa commit 38af2c6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

noxfile.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,15 @@ 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, silent=False)
46+
session.install("-v", "-e", ".[test]", silent=False)
4747
if cryptography_version == "main":
48-
session.install("git+https://github.com/pyca/cryptography.git")
48+
session.install(
49+
"-v", "git+https://github.com/pyca/cryptography.git", silent=False
50+
)
4951

5052
session.run("openssl", "version", external=True)
53+
session.run("python", "-m", "OpenSSL.debug")
5154
session.run("coverage", "run", "--parallel", "-m", "OpenSSL.debug")
5255
session.run(
5356
"coverage", "run", "--parallel", "-m", "pytest", "-v", *session.posargs

0 commit comments

Comments
 (0)