yezyilomo / django-restql

Turn your API made with Django REST Framework(DRF) into a GraphQL like API.
https://yezyilomo.github.io/django-restql
MIT License
616 stars 43 forks source link

Runtests is failing. #255

Closed gonzaloamadio closed 3 years ago

gonzaloamadio commented 3 years ago

But when trying to execute tests I have the following error:

django.core.exceptions.ImproperlyConfigured: Cannot import 'testapp'. Check that 'tests.testapp.apps.TestappConfig.name' is correct.

yezyilomo commented 3 years ago

Use Django<3.2, app config in Django was changed in version 3.2, we have not migrated to the new way of configuring app yet. Note that’s for tests only but as for support, django-restql works with version 3.2 too..

gonzaloamadio commented 3 years ago

Worked

yezyilomo commented 3 years ago

Use Django<3.2, app config in Django was changed in version 3.2, we have not migrated to the new way of configuring app yet. Note that’s for tests only but as for support, django-restql works with version 3.2 too..

Now tests can run on v3.2 too.