summaryrefslogtreecommitdiff
path: root/git/test/lib/helper.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2017-12-11 15:16:32 +0100
committerSebastian Thiel <byronimo@gmail.com>2017-12-11 15:16:32 +0100
commit0a6cb4aab975a35e9ca7f28c1814aa13203ab835 (patch)
tree1b719856eec3a5e16ff0d977dd538df03b792ce5 /git/test/lib/helper.py
parenta14277eecf65ac216dd1b756acee8c23ecdf95d9 (diff)
parentd2c1d194064e505fa266bd1878c231bb7da921ea (diff)
downloadgitpython-0a6cb4aab975a35e9ca7f28c1814aa13203ab835.tar.gz
Merge branch 'bf-includes' of https://github.com/yarikoptic/GitPython into yarikoptic-bf-includes
Diffstat (limited to 'git/test/lib/helper.py')
-rw-r--r--git/test/lib/helper.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/git/test/lib/helper.py b/git/test/lib/helper.py
index ff337f29..cb46173d 100644
--- a/git/test/lib/helper.py
+++ b/git/test/lib/helper.py
@@ -29,6 +29,8 @@ else:
import unittest
TestCase = unittest.TestCase
+SkipTest = unittest.SkipTest
+skipIf = unittest.skipIf
ospd = osp.dirname
@@ -37,7 +39,9 @@ GIT_DAEMON_PORT = os.environ.get("GIT_PYTHON_TEST_GIT_DAEMON_PORT", "19418")
__all__ = (
'fixture_path', 'fixture', 'StringProcessAdapter',
- 'with_rw_directory', 'with_rw_repo', 'with_rw_and_rw_remote_repo', 'TestBase', 'TestCase',
+ 'with_rw_directory', 'with_rw_repo', 'with_rw_and_rw_remote_repo',
+ 'TestBase', 'TestCase',
+ 'SkipTest', 'skipIf',
'GIT_REPO', 'GIT_DAEMON_PORT'
)