From 2211844e58c7ee3cf7eacc8d109891cc6a5a2795 Mon Sep 17 00:00:00 2001 From: Martin Domke Date: Thu, 21 Sep 2023 20:51:30 +0200 Subject: [PATCH] chore: Remove debug logging from calls to hatch --- .github/workflows/lint-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index 3d05f94..ef4d6db 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -21,7 +21,7 @@ jobs: pip install hatch-vcs pip install hatch-fancy-pypi-readme - name: Lint code - run: hatch -vvv run lint:style + run: hatch run lint:style lint-typing: runs-on: ubuntu-latest @@ -37,7 +37,7 @@ jobs: pip install hatch-vcs pip install hatch-fancy-pypi-readme - name: Lint typing - run: hatch -vvv run lint:typing + run: hatch run lint:typing test: runs-on: ubuntu-latest @@ -56,4 +56,4 @@ jobs: pip install hatch-vcs pip install hatch-fancy-pypi-readme - name: Test - run: hatch -vvv run cov-test + run: hatch run cov-test