From 89d6097125f08f41104c403d96762bc08aa08ece Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Wed, 27 Nov 2019 08:57:14 +0100 Subject: [PATCH] Github Actions: Run tests even if code style validation fails The test suite will still fail, but we get all issues reported instead of just code style issues. --- .github/workflows/run-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0834640af..bafc2d3ae 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -45,6 +45,7 @@ jobs: flake8 picard --count --show-source --statistics isort --check-only --diff --recursive picard test - name: Test with pytest + if: always() run: | pip install pytest pytest-randomly pytest-cov pytest --verbose --cov=picard --cov-report xml:coverage.xml test