From d82d5615932d67f44ee8608abc9e2626bd86bef1 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 13 Sep 2023 18:38:00 +0200 Subject: [PATCH] gci: Print envvars and configuration when testing --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e197dd9d8ff8..e7086cbb10d3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -295,6 +295,7 @@ jobs: run: | # Loading the network from config.vars rather than the envvar is a terrible idea... sed -i 's/TEST_NETWORK=regtest/TEST_NETWORK=liquid-regtest/g' config.vars + cat config.vars - name: Test env: @@ -310,6 +311,8 @@ jobs: TEST_NETWORK: ${{ matrix.TEST_NETWORK }} LIGHTNINGD_POSTGRES_NO_VACUUM: 1 run: | + env + cat config.vars VALGRIND=0 poetry run pytest tests/ -vvv -n ${PYTEST_PAR} ${PYTEST_OPTS} integration-valgrind: