[Answer]-Lettuce django integration

1👍

The solution was to set a LETTUCE_TEST_SERVER value to a test runner based on Django LiveServerTestCase. Thus, I had to add a line to settings.py:

LETTUCE_TEST_SERVER = 'lettuce.django.server.DjangoServer'

This seem to be an undocumented feature from a following pull request: https://github.com/gabrielfalcao/lettuce/pull/395.

Leave a comment