guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

35/46: gnu: python-django-allauth: Update to 0.40.0.


From: guix-commits
Subject: 35/46: gnu: python-django-allauth: Update to 0.40.0.
Date: Tue, 21 Jul 2020 08:49:45 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 5b1a9e07596759b4cb66b732e7661ecd6ec8a122
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jul 21 12:42:20 2020 +0300

    gnu: python-django-allauth: Update to 0.40.0.
    
    * gnu/packages/django.scm (python-django-allauth): Update to 0.40.0.
    [arguments]: Remove 'skip-test-requiring-network-access phase. Adjust
    custom 'check phase.
---
 gnu/packages/django.scm | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 69fedf7..926d6d6 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -392,36 +392,23 @@ them do this.")
 (define-public python-django-allauth
   (package
     (name "python-django-allauth")
-    (version "0.39.1")
+    (version "0.40.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "django-allauth" version))
        (sha256
         (base32
-         "17l0acpr3cihdndzccjhgv58f9z170v2qwx7w0b8w6235x646i24"))))
+         "12f5gjidcpb7a0d1f601k0c5dcdmb6fg9sfn7xn5j8zfsg29y63a"))))
     (build-system python-build-system)
     (arguments
      '(#:phases
        (modify-phases %standard-phases
-         ;; TODO: Tagging the tests requiring the web could be done upstream.
-         (add-before 'check 'skip-test-requiring-network-access
-           (lambda _
-             (substitute* "allauth/socialaccount/providers/openid/tests.py"
-               (("import override_settings") "import tag, override_settings")
-               (("def test_login")
-                "@tag('requires-web')
-    def test_login"))))
          (replace 'check
            (lambda _
-             ;; TODO: investigate why this test fails
-             (delete-file "allauth/socialaccount/providers/cern/tests.py")
              (setenv "DJANGO_SETTINGS_MODULE" "test_settings")
-             (invoke "django-admin"
-                     "test"
-                     "allauth"
-                     "--verbosity=2"
-                     "--exclude-tag=requires-web"))))))
+             (invoke "django-admin" "test" "allauth.tests"
+                     "--pythonpath=."))))))
     (propagated-inputs
      `(("python-openid" ,python-openid)
        ("python-requests" ,python-requests)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]