tags 1028163 + patch
thanks
Hi.
I propose that we make the package compliant with Policy 4.2 by disabling
the tests which blindly assume there is a ssh service running in the host
machine.
(Otherwise, what kind of build-depends should be used for that?)
The attached patch works for me.
To do it right without breaking Policy 4.2, the package should maybe
enable its own ssh service on a non-standard port to avoid conflict
with a more than possible standard ssh service in the host machine,
which may or may not be present.
Thanks.--- a/test/test_sshfs.py
+++ b/test/test_sshfs.py
@@ -30,6 +30,7 @@ def name_generator(__ctr=[0]):
__ctr[0] += 1
return 'testfile_%d' % __ctr[0]
+@pytest.mark.skip(reason="packages must not require network access to be
built")
@pytest.mark.parametrize("debug", (False, True))
@pytest.mark.parametrize("cache_timeout", (0,1))
@pytest.mark.parametrize("sync_rd", (True, False))