(session)
| 36 | |
| 37 | @nox.session(reuse_venv=True) |
| 38 | def python_tests(session): |
| 39 | session.install(".", "pytest", "pytest-cov") |
| 40 | tests = session.posargs or ["tests"] |
| 41 | session.run( |
| 42 | "pytest", "--cov=gdbgui", "--cov-config", ".coveragerc", "--cov-report=", *tests |
| 43 | ) |
| 44 | session.notify("cover") |
| 45 | |
| 46 | |
| 47 | @nox.session(reuse_venv=True) |