summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-11-28 09:30:22 +0100
committerGitHub <noreply@github.com>2022-11-28 09:30:22 +0100
commit20d575b101608c1475bc2881f83b04da0e68ef7d (patch)
tree875a8c7927d7f1f8287ade10964577d23d34ab1f
parent662497cece5480b39d1d0c7f68c7b0ca395be923 (diff)
Refs #31169 -- Skipped test_get_test_db_clone_settings_not_supported on not in-memory SQLite database.
multiprocessing's start method is checked only for in-memory SQLite databases.
-rw-r--r--django/db/backends/sqlite3/features.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py
index 66d25bd145..60b9b7d3a0 100644
--- a/django/db/backends/sqlite3/features.py
+++ b/django/db/backends/sqlite3/features.py
@@ -124,6 +124,11 @@ class DatabaseFeatures(BaseDatabaseFeatures):
"servers.tests.LiveServerInMemoryDatabaseLockTest."
"test_in_memory_database_lock",
},
+ "multiprocessing's start method is checked only for in-memory "
+ "SQLite databases": {
+ "backends.sqlite.test_creation.TestDbSignatureTests."
+ "test_get_test_db_clone_settings_not_supported",
+ },
}
)
return skips