gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated: condition


From: gnunet
Subject: [taler-wallet-core] branch master updated: condition
Date: Fri, 07 Aug 2020 08:44:27 +0200

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

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 8b6f4c1f condition
8b6f4c1f is described below

commit 8b6f4c1ff0f93a72273e68a7fbd9e31b478142cc
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Fri Aug 7 12:14:17 2020 +0530

    condition
---
 packages/taler-integrationtests/src/harness.ts | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/packages/taler-integrationtests/src/harness.ts 
b/packages/taler-integrationtests/src/harness.ts
index 6b848df5..02bb8143 100644
--- a/packages/taler-integrationtests/src/harness.ts
+++ b/packages/taler-integrationtests/src/harness.ts
@@ -867,7 +867,10 @@ export interface MerchantInstanceConfig {
  * Check if the test should hang around after it failed.
  */
 function shouldLinger(): boolean {
-  return process.env["TALER_TEST_LINGER"] == "1";
+  return (
+    process.env["TALER_TEST_LINGER"] == "1" ||
+    process.env["TALER_TEST_LINGER_ALWAYS"] == "1"
+  );
 }
 
 /**
@@ -899,7 +902,9 @@ export function runTest(testMain: (gc: GlobalTestState) => 
Promise<void>) {
     let ret = 0;
     try {
       gc = new GlobalTestState({
-        testDir: fs.mkdtempSync(path.join(os.tmpdir(), 
"taler-integrationtest-")),
+        testDir: fs.mkdtempSync(
+          path.join(os.tmpdir(), "taler-integrationtest-"),
+        ),
       });
       updateCurrentSymlink(gc.testDir);
       await testMain(gc);

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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