From 32d160be517e15e8649574fb981a43c3fb17e896 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Sat, 7 Sep 2024 19:03:57 -0700 Subject: [PATCH] Debugging the uv run in GH actions --- .github/workflows/ci.yml | 4 ++-- tox.ini | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2093802..d012a00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Run unit tests - run: uv run tox -e py${{ matrix.python-version }} + run: uv run --verbose tox -e py${{ matrix.python-version }} - name: Run Style Checks - run: uv run tox -e style + run: uv run --verbose tox -e style diff --git a/tox.ini b/tox.ini index 9209d1f..b2bf266 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,7 @@ commands = uv pip install -e .[dev] coverage report -m [testenv:style] +skip_install = true deps = ruff commands = ruff check --fix ruff format