test(postgres): enable test_restore for postgres (#34768)
This commit is contained in:
parent
c57444bc84
commit
ef5d2213e0
1 changed files with 4 additions and 1 deletions
|
|
@ -244,7 +244,10 @@ class TestCommands(BaseTestCommands):
|
|||
self.assertEqual(self.returncode, 0)
|
||||
self.assertEqual(self.stdout, frappe.bold(text="DocType"))
|
||||
|
||||
@run_only_if(db_type_is.MARIADB)
|
||||
@skipIf(
|
||||
frappe.conf.db_type == "sqlite",
|
||||
"Not for SQLite for now",
|
||||
)
|
||||
def test_restore(self):
|
||||
# step 0: create a site to run the test on
|
||||
global_config = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue