From 03b2dc11e81785c317afb456c97c5c4fa65d6bd9 Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Mon, 6 Nov 2023 07:51:26 -0500 Subject: [PATCH] test failure message --- .github/workflows/ci.yml | 1 + tests/test_store.py | 4 ++++ 2 files changed, 5 insertions(+) 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