From 93163fe8cf5bcdc9ef8c183a8b25417fe9497a8e Mon Sep 17 00:00:00 2001 From: Patrick Mihelich Date: Wed, 18 Dec 2024 16:33:35 -0600 Subject: [PATCH] Try to make CI logging from pip less verbose. --- .github/workflows/ci_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_python.yml b/.github/workflows/ci_python.yml index 721d1fd8..848b534a 100644 --- a/.github/workflows/ci_python.yml +++ b/.github/workflows/ci_python.yml @@ -29,7 +29,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip3 install -vvv -e .[dev] + run: pip3 install -v -e .[dev] - name: Run sequential tests run: ./run_python_tests.sh - name: Run asyncio tests