diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2023-09-24 12:25:50 +0200 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-06-30 22:03:33 -0500 |
commit | 474b583e7ab0e54947183060024fd4e7181cca28 (patch) | |
tree | 5d352ef4398d67e7cb20aafea503c77bebb000b8 /gnu | |
parent | bfa5b66b02ed80d9bd3c354dfffcc074e2af2320 (diff) |
gnu: python-django-4.2: Simpler unittest skip.
* gnu/packages/django.scm (python-django-4.2): Simpler unittest skip.
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
-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 b70ad12a9b..4404c8368d 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -89,7 +89,7 @@ ;; harmless, so just ignore this test. (substitute* "tests/settings_tests/tests.py" ((".*def test_incorrect_timezone.*" all) - (string-append " @unittest.skipIf(True, 'Disabled by Guix')\n" + (string-append " @unittest.skip('Disabled by Guix')\n" all))))) (replace 'check (lambda* (#:key tests? test-flags #:allow-other-keys) |