From c83111b44afabb03e92c1f9b91d17a669ed363c0 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Tue, 2 Apr 2024 10:31:52 +0200 Subject: [PATCH] test: Add DEVELOPER=1 back --- .github/workflows/cln-plugin.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cln-plugin.yaml b/.github/workflows/cln-plugin.yaml index 5a1355a4..b0cda198 100644 --- a/.github/workflows/cln-plugin.yaml +++ b/.github/workflows/cln-plugin.yaml @@ -24,7 +24,7 @@ jobs: path: lightning key: ${{ runner.os }}-build-${{ env.cache-name }}-v${{ env.cln_version }} - name: Compile CLN - env: + env: PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring if: ${{ steps.cache-cln.outputs.cache-hit != 'true' }} run: | @@ -60,7 +60,7 @@ jobs: cd lightning && sudo make install - name: Install teos and the plugin run: | - cargo install --locked --path teos + cargo install --locked --path teos cargo install --locked --path watchtower-plugin - name: Add test dependencies run: | @@ -69,4 +69,4 @@ jobs: - name: Run tests run: | cd watchtower-plugin/tests - SLOW_MACHINE=1 poetry run pytest test.py --log-cli-level=INFO -s + DEVELOPER=1 SLOW_MACHINE=1 poetry run pytest test.py --log-cli-level=INFO -s