1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Mark test_show_versions as xfail.
The corresponding files aren't installed during build time. This simple xpass during autopkgtest and has been tested for the same.
Author: Nilesh Patra <npatra974@gmail.com>
Forwarded: not-needed
Last-Update: 2020-11-05
--- a/tests/test_util/test_util.py
+++ b/tests/test_util/test_util.py
@@ -34,6 +34,7 @@
assert test_data["c"]["d"] == 2
+@pytest.mark.xfail(reason="The binary doesn't seem to be built during build - this should simply xpass during autopkgtests")
def test_show_versions(capsys) -> None:
"""Test output of dependency information."""
show_versions()
|