From 33174d1659ee54ef6465a928874b168da5a1b75e Mon Sep 17 00:00:00 2001 From: = <=> Date: Mon, 16 Sep 2024 23:35:34 +0000 Subject: [PATCH] add a failing test to confirm that CI tests are being run twice --- auctions/tests.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/auctions/tests.py b/auctions/tests.py index aaad493..81c3cc3 100644 --- a/auctions/tests.py +++ b/auctions/tests.py @@ -1058,3 +1058,8 @@ def test_admin_user(self): except socket.gaierror: # this happens because channels cannot connect to redis -- tests aren't running in a container pass + + +class TestThatDoesntWorkTestCase(StandardTestCase): + def test_this_test_should_fail(self): + assert 1 == False