Merge pull request #197968 from cab404/cab/dbus-next-skip-tcp-test

pythonPackages.dbus-next: Ignore tcp_connection_with_forwarding test
This commit is contained in:
Cabia Rangris 2022-10-31 15:55:58 +04:00 committed by GitHub
commit de8154e200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,10 +26,12 @@ buildPythonPackage rec {
];
# test_peer_interface hits a timeout
# test_tcp_connection_with_forwarding fails due to dbus
# creating unix socket anyway on v1.14.4
checkPhase = ''
dbus-run-session --config-file=${dbus.daemon}/share/dbus-1/session.conf \
${python.interpreter} -m pytest -sv --cov=dbus_next \
-k "not test_peer_interface"
-k "not test_peer_interface and not test_tcp_connection_with_forwarding"
'';
meta = with lib; {