Changes between Initial Version and Version 1 of Ticket #35402, comment 3


Ignore:
Timestamp:
Apr 24, 2024, 7:18:16 PM (5 months ago)
Author:
Tim Graham

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35402, comment 3

    initial v1  
    1 In the backends.base.test_creation.TestMarkTests, it seems like there is a test for skipping a class.
    2 
     1In the `backends.base.test_creation.TestMarkTests`, it seems like there is a test for skipping a class.
     2{{{ #!python
    33"skip test class": {
    44       "backends.base.test_creation.SkipTestClass",
    55}
    6 
    7 Interestingly, this passes, yet the ImportError is still thrown for seemingly the same behavior in django/db/backends/base/features.py. I can't really understand why import_string accepts "backends.base.test_creation", but fails on "model_fields.test_decimalfield". Can anyone offer any advice?
     6}}}
     7Interestingly, this passes, yet the `ImportError` is still thrown for seemingly the same behavior in `django/db/backends/base/features.py`. I can't really understand why `import_string` accepts `"backends.base.test_creation"`, but fails on `"model_fields.test_decimalfield"`. Can anyone offer any advice?
Back to Top