gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: Terminate services after test passes.


From: gnunet
Subject: [libeufin] branch master updated: Terminate services after test passes.
Date: Mon, 04 May 2020 18:32:18 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new fb58c4a  Terminate services after test passes.
fb58c4a is described below

commit fb58c4a2a23092fb464551aa5b554b72996a24ba
Author: Marcello Stanisci <address@hidden>
AuthorDate: Mon May 4 18:32:04 2020 +0200

    Terminate services after test passes.
---
 integration-tests/test-ebics.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/integration-tests/test-ebics.py b/integration-tests/test-ebics.py
index 551ab28..c1b02a8 100755
--- a/integration-tests/test-ebics.py
+++ b/integration-tests/test-ebics.py
@@ -50,7 +50,7 @@ def checkPorts(ports):
     for i in ports:
         s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
         try:
-            s.bind(i)
+            s.bind(("0.0.0.0", i))
             s.close()
         except:
             print("Port {} is not available".format(i))
@@ -253,4 +253,6 @@ resp = assertResponse(
 )
 assert(len(resp.json().get("payments")) == 1)
 
+nexus.terminate()
+sandbox.terminate()
 print("Test passed!")

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]