pythonPackages.dbus-next: Ignore tcp_connection_with_forwarding test
Fixes #197408 Co-authored-by: @SFrijters
This commit is contained in:
parent
45ff74823b
commit
78c370aed7
1 changed files with 3 additions and 1 deletions
|
@ -26,10 +26,12 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
# test_peer_interface hits a timeout
|
# test_peer_interface hits a timeout
|
||||||
|
# test_tcp_connection_with_forwarding fails due to dbus
|
||||||
|
# creating unix socket anyway on v1.14.4
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
dbus-run-session --config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
dbus-run-session --config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
||||||
${python.interpreter} -m pytest -sv --cov=dbus_next \
|
${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; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue