mirror of
https://github.com/django/django.git
synced 2025-07-28 15:44:20 +00:00
Fixed #31169 -- Adapted the parallel test runner to use spawn.
Co-authored-by: Valz <ahmadahussein0@gmail.com> Co-authored-by: Nick Pope <nick@nickpope.me.uk>
This commit is contained in:
parent
3eaba13a47
commit
3b3f38b3b0
12 changed files with 161 additions and 23 deletions
|
@ -1,5 +1,7 @@
|
|||
from datetime import date
|
||||
|
||||
from django.test import modify_settings
|
||||
|
||||
from . import PostgreSQLTestCase
|
||||
from .models import (
|
||||
HStoreModel,
|
||||
|
@ -16,6 +18,7 @@ except ImportError:
|
|||
pass # psycopg2 isn't installed.
|
||||
|
||||
|
||||
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
||||
class BulkSaveTests(PostgreSQLTestCase):
|
||||
def test_bulk_update(self):
|
||||
test_data = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue