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.
1 parent b782a5a commit 30c501cCopy full SHA for 30c501c
tests/test_venv_deactivate.py
@@ -9,11 +9,3 @@
9
def test_venv_deactivate(tmp_path: Path):
10
"""Checks that we can create, activate and deactivate an environment"""
11
run_command("venv deactivate", activated=True, cwd=tmp_path)
12
-
13
14
-def test_venv_deactivate_noop(tmp_path: Path, capfd: pytest.CaptureFixture[str]):
15
- """Checks that trying to deactivate an environment that is not activated does nothing"""
16
- run_command("venv deactivate", cwd=tmp_path)
17
18
- output = capfd.readouterr().out
19
- assert "No virtual environment currently active, nothing to deactivate" in output
0 commit comments