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 f1a717f commit 733a853Copy full SHA for 733a853
conftest.py
@@ -23,7 +23,7 @@
23
USING_ZSH = "zsh" in os.getenv("SHELL", "")
24
25
26
-@pytest.mark.skipif(USING_ZSH, reason="Using ZSH")
+@pytest.mark.skipif(not USING_ZSH, reason="Using ZSH")
27
@pytest.fixture(autouse=USING_ZSH, scope="session")
28
def zshrc(user_path: pathlib.Path) -> pathlib.Path:
29
"""This quiets ZSH default message.
0 commit comments