diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-07-21 13:53:42 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-07-21 15:30:08 +0300 |
commit | 1c24d6d6629ec3096b8bd64176b5e063b2692fdb (patch) | |
tree | 7eb8028ecf0fc70782279f93f4410689f512a4d0 | |
parent | 5b1a9e07596759b4cb66b732e7661ecd6ec8a122 (diff) | |
download | guix-1c24d6d6629ec3096b8bd64176b5e063b2692fdb.tar guix-1c24d6d6629ec3096b8bd64176b5e063b2692fdb.tar.gz |
gnu: python-django-rq: Fix test suite.
* gnu/packages/django.scm (python-django-rq)[arguments]: Adjust custom
'check phase.
-rw-r--r-- | gnu/packages/django.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 926d6d6dbd..7c89757082 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -874,7 +874,7 @@ support, and optional data-URI image and font embedding.") (invoke "redis-server" "--daemonize" "yes") (invoke "django-admin.py" "test" "django_rq" "--settings=django_rq.tests.settings" - "--pythonpath=")))))) + "--pythonpath=.")))))) (native-inputs `(("python-mock" ,python-mock) ("redis" ,redis))) |