summaryrefslogtreecommitdiff
path: root/git/test/lib/helper.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2017-12-11 15:26:23 +0100
committerGitHub <noreply@github.com>2017-12-11 15:26:23 +0100
commit03126bfd6e97ddcfb6bd8d4a893d2d04939f197e (patch)
tree583bdcea25683b3df9a81a6bd5bb8549fb3c5937 /git/test/lib/helper.py
parentd5710466a728446d8169761d9d4c29b1cb752b00 (diff)
parent0a6cb4aab975a35e9ca7f28c1814aa13203ab835 (diff)
downloadgitpython-03126bfd6e97ddcfb6bd8d4a893d2d04939f197e.tar.gz
Merge pull request #700 from yarikoptic/bf-includes
BF: process included files before the rest
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'
)