diff options
author | Yaroslav Halchenko <debian@onerussian.com> | 2017-11-27 17:12:14 -0500 |
---|---|---|
committer | Yaroslav Halchenko <debian@onerussian.com> | 2017-11-27 17:12:14 -0500 |
commit | cd6e82cfa3bdc3b5d75317431d58cc6efb710b1d (patch) | |
tree | b657899669424caf0d762cdc00aec6ad3f67e184 /git/test/lib/helper.py | |
parent | a2cd130bed184fe761105d60edda6936f348edc6 (diff) | |
download | gitpython-cd6e82cfa3bdc3b5d75317431d58cc6efb710b1d.tar.gz |
BF: process included files before the rest
Diffstat (limited to 'git/test/lib/helper.py')
-rw-r--r-- | git/test/lib/helper.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/git/test/lib/helper.py b/git/test/lib/helper.py index 729c76a4..8ecfbf09 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' ) |