django-clickhouse-backend icon indicating copy to clipboard operation
django-clickhouse-backend copied to clipboard

python manage.py test misconfig

Open Ferdellans opened this issue 3 weeks ago • 0 comments

in test case you need allow exactly which db this test case can use

class TestEvent(TestCase):
    databases = ['default', 'clickhouse']

    def test_spam(self):
        assert Event.objects.count() == 0

Ferdellans avatar Nov 20 '25 16:11 Ferdellans