From 449a9ba99211a9afe60db2375a598b05d679c8cb Mon Sep 17 00:00:00 2001 From: Christopher Rowley Date: Sun, 24 May 2026 14:39:22 +0100 Subject: [PATCH] only set JULIA_DEBUG=PythonCall when running with debug logging enabled --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fe7507d3..23cc1866 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -63,7 +63,7 @@ jobs: - name: Run tests uses: julia-actions/julia-runtest@v1 env: - JULIA_DEBUG: PythonCall + JULIA_DEBUG: ${{ runner.debug == '1' && 'PythonCall' || '' }} JULIA_NUM_THREADS: '2' PYTHON: ${{ steps.setup-python.outputs.python-path }} JULIA_PYTHONCALL_EXE: ${{ case(matrix.pythonexe == 'python', steps.setup-python.outputs.python-path, matrix.pythonexe) }}