New comment by dkwo on void-packages repository https://github.com/void-linux/void-packages/pull/44740#issuecomment-1615995350 Comment: it's failing one test: ``` =================================== FAILURES =================================== ____________________________ PathTest.test_compare _____________________________ self = @unittest.skipIf(os.path.exists(u"/.dockenv") or # Docker os.environ.get(u"USER", None) == u"buildd" or # Launchpad os.environ.get(u"NON_NATIVE", None) == u"true", # GitLab u"Skip on non-native environs") def test_compare(self): u"""Test directory comparisons""" assert not os.system(u"cp -pR {0}/testfiles/dir1/ {0}/testfiles/output".format(_runtest_dir)) > assert Path(u"{0}/testfiles/dir1".format(_runtest_dir)).compare_recursive( Path(u"{0}/testfiles/output".format(_runtest_dir)), 1) E AssertionError: assert None E + where None = ((() b'/tmp/testfiles/output' dir), 1) E + where = (() b'/tmp/testfiles/dir1' dir).compare_recursive E + where (() b'/tmp/testfiles/dir1' dir) = Path('/tmp/testfiles/dir1') E + where '/tmp/testfiles/dir1' = ('/tmp') E + where = '{0}/testfiles/dir1'.format E + and (() b'/tmp/testfiles/output' dir) = Path('/tmp/testfiles/output') E + where '/tmp/testfiles/output' = ('/tmp') E + where = '{0}/testfiles/output'.format /builddir/duplicity-1.2.3/testing/unit/test_path.py:55: AssertionError ----------------------------- Captured stdout call ----------------------------- (. dir) not equal to (. dir) =============================== warnings summary =============================== ../../usr/lib/python3.11/site-packages/future/standard_library/__init__.py:65 /usr/lib/python3.11/site-packages/future/standard_library/__init__.py:65: DeprecationWarning: the imp module is deprecated in favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses import imp testing/functional/__init__.py:37 /builddir/duplicity-1.2.3/testing/functional/__init__.py:37: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html from pkg_resources import parse_version -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html ----------- generated xml file: /builddir/duplicity-1.2.3/report.xml ----------- =========================== short test summary info ============================ FAILED testing/unit/test_path.py::PathTest::test_compare - AssertionError: as... ====== 1 failed, 467 passed, 10 skipped, 2 warnings in 968.00s (0:16:08) ======= ```