diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71ab60d..73d58cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,7 @@ jobs: os: ${{ matrix.os }} python-version: ${{ matrix.python-version }} pip-install-flags: ${{ github.event_name == 'schedule' && '--pre' || '' }} + report-failures: true strategy: fail-fast: false matrix: diff --git a/tests/test_store.py b/tests/test_store.py index e136cfd..2d6c35a 100644 --- a/tests/test_store.py +++ b/tests/test_store.py @@ -116,3 +116,7 @@ def func2(self) -> str: assert not test_store._providers assert not test_store._processors + + +def test_failure(): + assert False