We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e156b commit 6b27a7cCopy full SHA for 6b27a7c
tests/integration_tests/test_robust_python_demo.py
@@ -15,13 +15,13 @@ def test_demo_project_generation(robust_python_demo_with_setup: Path) -> None:
15
@pytest.mark.parametrize("session", GLOBAL_NOX_SESSIONS)
16
def test_demo_project_nox_session(robust_demo: Path, session: str) -> None:
17
command: list[str] = ["nox", "-s", session]
18
- result: subprocess.CompletedProcess = subprocess.run(
+ subprocess.run(
19
command,
20
cwd=robust_demo,
21
capture_output=True,
22
- text=True
+ text=True,
23
+ check=True
24
)
- assert result.check_returncode() == 0
25
26
27
def test_demo_project_nox_pre_commit(robust_demo: Path) -> None:
0 commit comments