diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-10-10 10:02:16 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-11 18:04:02 +0200 |
commit | e355275c57812af0f4c795f229382afdda4bca86 (patch) | |
tree | a1cf24efb40bc3e0722e714b20fdeb22a6fe3b94 | |
parent | 74c7ed0e809d6f3d691d8251c70f9a5dab5fb18d (diff) | |
download | gitpython-e355275c57812af0f4c795f229382afdda4bca86.tar.gz |
imp(performance): execute performance tests on travis
Fixes #524
-rw-r--r-- | git/test/performance/lib.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/git/test/performance/lib.py b/git/test/performance/lib.py index 0c4c20a4..b57b9b71 100644 --- a/git/test/performance/lib.py +++ b/git/test/performance/lib.py @@ -3,7 +3,6 @@ import os from git.test.lib import ( TestBase ) -from gitdb.test.lib import skip_on_travis_ci import tempfile import logging @@ -43,8 +42,6 @@ class TestBigRepoR(TestBase): #} END invariants def setUp(self): - # This will raise on travis, which is what we want to happen early as to prevent us to do any work - skip_on_travis_ci(lambda *args: None)(self) try: super(TestBigRepoR, self).setUp() except AttributeError: |