From 2f3a50bc978555b57967b79b016e3ae6cf224666 Mon Sep 17 00:00:00 2001 From: Simon Maillard Date: Thu, 23 Nov 2023 10:31:46 +0100 Subject: [PATCH] Fix CI: Add -s option to pytest --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f38df6e67..5e8d59893 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - run: pip install '.[test]' - - run: pytest --cov --disable-warnings + - run: pytest -s --cov --disable-warnings - uses: codecov/codecov-action@v3 # End-to-end tests @@ -83,7 +83,7 @@ jobs: with: python-version: "3.11" - run: pip install '.[test]' - - run: pytest -m end_to_end_${{ matrix.test-name }} + - run: pytest -s -m end_to_end_${{ matrix.test-name }} # Finally, single jon to check if all completed, for use in protected branch #