From 90da53c26cb5c2a43c8cc78485080abccaeedb89 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Wed, 10 Dec 2025 15:42:10 +0900 Subject: [PATCH] fixup! .gitea/workflows: init test pipeline --- .gitea/workflows/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index b2da102..ed75702 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -4,13 +4,13 @@ on: push: workflow_dispatch: inputs: - debug_sqlalchemy: + debug_sql: description: "Print SQL statements executed by SQLAlchemy during tests" type: boolean default: True env: - DEBUG_SQLALCHEMY: ${{ inputs.debug_sqlalchemy || true }} + DEBUG_SQL: ${{ inputs.debug_sql || true }} jobs: run-tests: @@ -43,9 +43,9 @@ jobs: --html=./test-report/index.html ) - if [ "$DEBUG_SQLALCHEMY" == "true" ]; then + if [ "$DEBUG_SQL" == "true" ]; then PYTEST_ARGS+=( - --echo + --debug-sql ) fi