# HG changeset patch # User Matt Johnston # Date 1634621458 -28800 # Node ID e0c1825c567d52fb93a2bc3949c8d57d5d28f183 # Parent 7f549ee3df48b15579f2baedc3c8d73f95a72634 Debug pytest password auth failing diff -r 7f549ee3df48 -r e0c1825c567d .github/workflows/build.yml --- a/.github/workflows/build.yml Tue Oct 19 06:02:47 2021 +0100 +++ b/.github/workflows/build.yml Tue Oct 19 13:30:58 2021 +0800 @@ -117,6 +117,7 @@ run: | mkdir -p ~/.ssh ~/inst/bin/dropbearkey -t ecdsa -f ~/.ssh/id_dropbear | grep ^ecdsa > ~/.ssh/authorized_keys + find ~/.ssh/authorized_keys -ls # upload config.log if something has failed - name: config.log diff -r 7f549ee3df48 -r e0c1825c567d test/test_dropbear.py --- a/test/test_dropbear.py Tue Oct 19 06:02:47 2021 +0100 +++ b/test/test_dropbear.py Tue Oct 19 13:30:58 2021 +0800 @@ -35,6 +35,10 @@ # Ready yield p p.terminate() + print("Terminated dropbear. Flushing output:") + for l in p.stderr: + print(l.rstrip()) + print("Done") def dbclient(request, *args, **kwargs): opt = request.config.option