taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 37abe0fc0f496e5cfde074ad97a44499e2fad8c3
parent 464d55b9d664d0ef9d337ea72c5f637fd7967962
Author: Florian Dold <florian@dold.me>
Date:   Thu,  9 Jan 2025 11:35:14 +0100

sqlite3 helper: be explicit about python version in shebang

Diffstat:
Mpackages/idb-bridge/taler-helper-sqlite3 | 2+-
Mpackages/taler-harness/src/integrationtests/testrunner.ts | 2++
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/packages/idb-bridge/taler-helper-sqlite3 b/packages/idb-bridge/taler-helper-sqlite3 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sqlite3 import sys diff --git a/packages/taler-harness/src/integrationtests/testrunner.ts b/packages/taler-harness/src/integrationtests/testrunner.ts @@ -151,6 +151,7 @@ import { runWithdrawalFeesTest } from "./test-withdrawal-fees.js"; import { runWithdrawalFlexTest } from "./test-withdrawal-flex.js"; import { runWithdrawalHandoverTest } from "./test-withdrawal-handover.js"; import { runWithdrawalHugeTest } from "./test-withdrawal-huge.js"; +import { runWithdrawalIbanQrTest } from "./test-withdrawal-iban-qr.js"; import { runWithdrawalIdempotentTest } from "./test-withdrawal-idempotent.js"; import { runWithdrawalManualTest } from "./test-withdrawal-manual.js"; import { runWithdrawalPrepareTest } from "./test-withdrawal-prepare.js"; @@ -298,6 +299,7 @@ const allTests: TestMainFunction[] = [ runKycAmpFailureTest, runPeerPushAbortTest, runWithdrawalCashacceptorTest, + runWithdrawalIbanQrTest, ]; export interface TestRunSpec {