| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,3 +3,5 @@ include LICENSE | |||
| 3 | 3 | include CHANGES | |
| 4 | 4 | include AUTHORS | |
| 5 | 5 | include README | |
| 6 | + | ||
| 7 | + graft test/fixtures | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -65,6 +65,7 @@ def _stamp_version(filename): | |||
| 65 | 65 | url = "http://gitorious.org/projects/git-python/", | |
| 66 | 66 | packages = ['git.'+p for p in find_packages('.')], | |
| 67 | 67 | py_modules = ['git.'+f[:-3] for f in os.listdir('.') if f.endswith('.py')], | |
| 68 | + package_data = {'git.test' : ['fixtures/*']}, | ||
| 68 | 69 | package_dir = {'git':''}, | |
| 69 | 70 | license = "BSD License", | |
| 70 | 71 | requires=('gitdb (>=0.5.1)',), | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | """Contains library functions""" | |
| 2 | 2 | import os | |
| 3 | - from test.testlib import * | ||
| 3 | + from git.test.lib import * | ||
| 4 | 4 | import shutil | |
| 5 | 5 | import tempfile | |
| 6 | 6 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,7 +7,7 @@ | |||
| 7 | 7 | from lib import * | |
| 8 | 8 | from git import * | |
| 9 | 9 | from gitdb import IStream | |
| 10 | - from test.git.test_commit import assert_commit_serialization | ||
| 10 | + from git.test.test_commit import assert_commit_serialization | ||
| 11 | 11 | from cStringIO import StringIO | |
| 12 | 12 | from time import time | |
| 13 | 13 | import sys | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | """Performance data streaming performance""" | |
| 2 | 2 | ||
| 3 | - from test.testlib import * | ||
| 3 | + from git.test.lib import * | ||
| 4 | 4 | from gitdb import * | |
| 5 | 5 | from gitdb.util import bin_to_hex | |
| 6 | 6 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ | |||
| 5 | 5 | # the BSD License: http://www.opensource.org/licenses/bsd-license.php | |
| 6 | 6 | ||
| 7 | 7 | import os | |
| 8 | - from test.testlib import * | ||
| 8 | + from git.test.lib import * | ||
| 9 | 9 | from git import * | |
| 10 | 10 | ||
| 11 | 11 | class TestActor(object): | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8,7 +8,7 @@ | |||
| 8 | 8 | import git.refs as refs | |
| 9 | 9 | import os | |
| 10 | 10 | ||
| 11 | - from test.testlib import * | ||
| 11 | + from git.test.lib import * | ||
| 12 | 12 | from git import * | |
| 13 | 13 | from itertools import chain | |
| 14 | 14 | from git.objects.util import get_object_type_by_name | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ | |||
| 4 | 4 | # This module is part of GitPython and is released under | |
| 5 | 5 | # the BSD License: http://www.opensource.org/licenses/bsd-license.php | |
| 6 | 6 | ||
| 7 | - from test.testlib import * | ||
| 7 | + from git.test.lib import * | ||
| 8 | 8 | from git import * | |
| 9 | 9 | from gitdb.util import hex_to_bin | |
| 10 | 10 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ | |||
| 5 | 5 | # This module is part of GitPython and is released under | |
| 6 | 6 | # the BSD License: http://www.opensource.org/licenses/bsd-license.php | |
| 7 | 7 | ||
| 8 | - from test.testlib import * | ||
| 8 | + from git.test.lib import * | ||
| 9 | 9 | from git import * | |
| 10 | 10 | from gitdb import IStream | |
| 11 | 11 | from gitdb.util import hex_to_bin | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ | |||
| 4 | 4 | # This module is part of GitPython and is released under | |
| 5 | 5 | # the BSD License: http://www.opensource.org/licenses/bsd-license.php | |
| 6 | 6 | ||
| 7 | - from test.testlib import * | ||
| 7 | + from git.test.lib import * | ||
| 8 | 8 | from git import * | |
| 9 | 9 | import StringIO | |
| 10 | 10 | from copy import copy | |
| Back | FazBrowse Home | New Git URL |
0 commit comments