mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed #32355 -- Dropped support for Python 3.6 and 3.7
This commit is contained in:
parent
9c6ba87692
commit
ec0ff40631
33 changed files with 59 additions and 274 deletions
|
|
@ -13,7 +13,7 @@ class SqliteDbshellCommandTestCase(SimpleTestCase):
|
|||
def test_path_name(self):
|
||||
self.assertEqual(
|
||||
self.settings_to_cmd_args_env({'NAME': Path('test.db.sqlite3')}),
|
||||
(['sqlite3', 'test.db.sqlite3'], None),
|
||||
(['sqlite3', Path('test.db.sqlite3')], None),
|
||||
)
|
||||
|
||||
def test_parameters(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue