From 8c473bcdbc8d088928acc442059fe6263c882323 Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Sat, 19 Oct 2024 23:25:03 +0200 Subject: [PATCH] Verbose poetry output --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5c32b27..9b329f7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,13 +21,13 @@ jobs: poetry-version: 1.8.4 - name: Install Dependencies (Pure Python) - run: poetry install --without dev,docs + run: poetry install -vvv --without dev,docs - name: Run Tests (Pure Python with coverage) run: poetry run pytest --cov=iscc_core --cov-report=xml -q tests - name: Build Extension modules - run: poetry install --without dev,docs --extras turbo + run: poetry install -vvv --without dev,docs --extras turbo - name: Run Tests (With Extension Modules) run: poetry run pytest -q tests --turbo