You've already forked pg_probackup
mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2026-04-25 21:11:48 +02:00
22bdbb3915
(and some other test as well).
9 lines
265 B
Python
9 lines
265 B
Python
__all__ = ['ptrack_helpers', 'cfs_helpers', 'data_helpers']
|
|
|
|
import unittest
|
|
|
|
# python 2.7 compatibility
|
|
if not hasattr(unittest.TestCase, "skipTest"):
|
|
def skipTest(self, reason):
|
|
raise unittest.SkipTest(reason)
|
|
unittest.TestCase.skipTest = skipTest |