We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a0052b commit ccf7bf6Copy full SHA for ccf7bf6
test/t/test_dmesg.py
@@ -1,7 +1,12 @@
1
+import sys
2
+
3
import pytest
4
5
6
class TestDmesg:
7
@pytest.mark.complete("dmesg -", require_cmd=True)
8
def test_1(self, completion):
- assert completion
9
+ if sys.platform == "darwin":
10
+ assert not completion # takes no options
11
+ else:
12
+ assert completion
test/t/test_vipw.py
class TestVipw:
@pytest.mark.complete("vipw -", require_cmd=True)
0 commit comments