django-clickhouse-backend
django-clickhouse-backend copied to clipboard
python manage.py test misconfig
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