Test failures #6
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The tests here seem to depend on
basalt
, which is an optional feature:However, it then fails in a different way with the feature:
(I don't have any other services listening on this device but
cups
andsystemd-resolved
).The tests have to run with a single thread as follows :
cargo test -- --test-threads 1
, otherwise concurrent tests try to use the same port, that's the crash you observed.Yes the Basalt test has to be removed when the feature flag is not activated.
Merci.