mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-01 01:32:34 +01:00
CI: don't fall over if cannot connect to upload server.
``` > warnings.warn(f"Error reporting testrun: {e}: {e.read()}") E AttributeError: 'URLError' object has no attribute 'read' ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
f77d4d7097
commit
855d7366c7
1 changed files with 1 additions and 1 deletions
|
@ -69,4 +69,4 @@ def pytest_pyfunc_call(pyfuncitem):
|
|||
except Exception as e:
|
||||
import warnings
|
||||
|
||||
warnings.warn(f"Error reporting testrun: {e}: {e.read()}")
|
||||
warnings.warn(f"Error reporting testrun: {e}")
|
||||
|
|
Loading…
Add table
Reference in a new issue