1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-11-24 08:52:38 +02:00

tests: minor fixes

This commit is contained in:
Grigory Smolkin 2020-05-14 13:27:17 +03:00
parent 74543d32f7
commit b0e90be2c2

View File

@ -1354,7 +1354,7 @@ class BackupTest(ProbackupTest, unittest.TestCase):
# Clean after yourself
self.del_test_dir(module_name, fname)
# @unittest.skip("skip")
@unittest.skip("skip")
def test_drop_db_during_full_backup(self):
""""""
fname = self.id().split('.')[3]
@ -1368,7 +1368,7 @@ class BackupTest(ProbackupTest, unittest.TestCase):
self.add_instance(backup_dir, 'node', node)
node.slow_start()
for i in range(1, 100):
for i in range(1, 2):
node.safe_psql(
"postgres",
"create database t_heap_{0}".format(i))
@ -1388,7 +1388,7 @@ class BackupTest(ProbackupTest, unittest.TestCase):
gdb.run_until_break()
# REMOVE file
for i in range(1, 100):
for i in range(1, 2):
node.safe_psql(
"postgres",
"drop database t_heap_{0}".format(i))