gnu: python-django-sortedm2m: Fix tests.

This is a follow-up to commit 283d5ac97f.

* gnu/packages/django.scm (python-django-sortedm2m): Invoke django-admin with
pythonpath and test settings.
This commit is contained in:
Marius Bakke 2021-12-01 00:47:58 +01:00
parent ddea9e32e7
commit e73f565445
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -929,8 +929,9 @@ (define-public python-django-sortedm2m
`(#:phases (modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "python" "django-admin.py"
"test" "--settings=settings"))))))
(invoke "django-admin"
"test" "--settings=test_project.settings"
"--pythonpath=."))))))
(propagated-inputs
`(("python-django" ,python-django)))
(home-page "https://github.com/jazzband/django-sortedm2m")