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 df7b81e commit d176aafCopy full SHA for d176aaf
test/t/test_dpkg_query.py
@@ -1,3 +1,5 @@
1
+import os.path
2
+
3
import pytest
4
5
@@ -7,6 +9,10 @@ class TestDpkgQuery:
7
9
def test_options(self, completion):
8
10
assert completion
11
12
+ @pytest.mark.xfail(
13
+ not os.path.exists("/etc/debian_version"),
14
+ reason="Likely fails on systems not based on Debian",
15
+ )
16
@pytest.mark.complete("dpkg-query -W dpk", require_cmd=True)
17
def test_show(self, completion):
18
assert "dpkg" in completion
0 commit comments