From bf1d39ededed38a0f0a9774de5a02a2a5a364e3e Mon Sep 17 00:00:00 2001 From: Artur Glavic Date: Thu, 26 Feb 2026 14:19:54 +0100 Subject: [PATCH] check which pytest config causes the crash --- .github/workflows/unit_tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 9f410f1..b5b800f 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -29,13 +29,14 @@ jobs: - name: Install dependencies run: | - python -m venv testenv - source testenv/bin/activate - python -m pip install --upgrade pip pip install pytest pip install -r requirements.txt + - name: Log pytest config + run: | + pytest --trace-config + - name: Test with pytest run: | python -m pytest tests