Remove redundant Travis CI config/code · gitpython-developers/GitPython@a6f0856 · GitHub
Skip to content

Commit a6f0856

Browse files
committed
Remove redundant Travis CI config/code
1 parent 5f149c1 commit a6f0856

5 files changed

Lines changed: 0 additions & 44 deletions

File tree

.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

gitdb/test/lib.py

Lines changed: 0 additions & 15 deletions

gitdb/test/performance/test_pack.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from gitdb.typ import str_blob_type
1818
from gitdb.exc import UnsupportedOperation
1919
from gitdb.db.pack import PackedDB
20-
from gitdb.test.lib import skip_on_travis_ci
2120

2221
import sys
2322
import os
@@ -26,7 +25,6 @@
2625

2726
class TestPackedDBPerformance(TestBigRepoR):
2827

29-
@skip_on_travis_ci
3028
def test_pack_random_access(self):
3129
pdb = PackedDB(os.path.join(self.gitrepopath, "objects/pack"))
3230

@@ -79,7 +77,6 @@ def test_pack_random_access(self):
7977
print("PDB: Obtained %i streams by sha and read all bytes totallying %i KiB ( %f KiB / s ) in %f s ( %f streams/s )" %
8078
(max_items, total_kib, total_kib / (elapsed or 1), elapsed, max_items / (elapsed or 1)), file=sys.stderr)
8179

82-
@skip_on_travis_ci
8380
def test_loose_correctness(self):
8481
"""based on the pack(s) of our packed object DB, we will just copy and verify all objects in the back
8582
into the loose object db (memory).
@@ -106,7 +103,6 @@ def test_loose_correctness(self):
106103
mdb._cache.clear()
107104
# end for each sha to copy
108105

109-
@skip_on_travis_ci
110106
def test_correctness(self):
111107
pdb = PackedDB(os.path.join(self.gitrepopath, "objects/pack"))
112108
# disabled for now as it used to work perfectly, checking big repositories takes a long time

gitdb/test/performance/test_pack_streaming.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from gitdb.db.pack import PackedDB
1313
from gitdb.stream import NullStream
1414
from gitdb.pack import PackEntity
15-
from gitdb.test.lib import skip_on_travis_ci
1615

1716
import os
1817
import sys
@@ -34,7 +33,6 @@ def write(self, d):
3433

3534
class TestPackStreamingPerformance(TestBigRepoR):
3635

37-
@skip_on_travis_ci
3836
def test_pack_writing(self):
3937
# see how fast we can write a pack from object streams.
4038
# This will not be fast, as we take time for decompressing the streams as well
@@ -61,7 +59,6 @@ def test_pack_writing(self):
6159
print(sys.stderr, "PDB Streaming: Wrote pack of size %i kb in %f s (%f kb/s)" %
6260
(total_kb, elapsed, total_kb / (elapsed or 1)), sys.stderr)
6361

64-
@skip_on_travis_ci
6562
def test_stream_reading(self):
6663
# raise SkipTest()
6764
pdb = PackedDB(os.path.join(self.gitrepopath, "objects/pack"))

gitdb/test/performance/test_stream.py

Lines changed: 0 additions & 2 deletions

0 commit comments

Comments
 (0)