diff options
| author | Konrad Weihmann <kweihmann@outlook.com> | 2020-07-10 18:41:02 +0200 |
|---|---|---|
| committer | Konrad Weihmann <kweihmann@outlook.com> | 2020-07-12 15:01:21 +0200 |
| commit | 0374d7cf84ecd8182b74a639fcfdb9eafddcfd15 (patch) | |
| tree | f462fb9fc434f197b39213b53f33f4e09fc0329e /git/test/fixtures/git_config | |
| parent | 9cb7ae8d9721e1269f5bacd6dbc33ecdec4659c0 (diff) | |
| download | GitPython-0374d7cf84ecd8182b74a639fcfdb9eafddcfd15.tar.gz GitPython-0374d7cf84ecd8182b74a639fcfdb9eafddcfd15.zip | |
tests: move to root dir
This should ensure that tests are NOT packaged into
release package by setuptools, as tests are development
only
+ fixtures after moving
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Diffstat (limited to 'git/test/fixtures/git_config')
| -rw-r--r-- | git/test/fixtures/git_config | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/git/test/fixtures/git_config b/git/test/fixtures/git_config deleted file mode 100644 index b8c178e3..00000000 --- a/git/test/fixtures/git_config +++ /dev/null @@ -1,46 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true -[remote "origin"] - fetch = +refs/heads/*:refs/remotes/origin/* - url = git://gitorious.org/~byron/git-python/byrons-clone.git - pushurl = git@gitorious.org:~byron/git-python/byrons-clone.git -# a tab indented section header - [branch "master"] - remote = origin - merge = refs/heads/master -# an space indented section header - [remote "mainline"] - # space indented comment - url = git://gitorious.org/git-python/mainline.git - fetch = +refs/heads/*:refs/remotes/mainline/* - -[remote "MartinMarcher"] - # tab indented comment - url = git://gitorious.org/~martin.marcher/git-python/serverhorror.git - fetch = +refs/heads/*:refs/remotes/MartinMarcher/* - # can handle comments - the section name is supposed to be stripped -# causes stock git-config puke -[ gui ] - geometry = 1316x820+219+243 207 192 -[branch "mainline_performance"] - remote = mainline - merge = refs/heads/master -# section with value defined before include to be overriden -[sec] - var0 = value0_main -[include] - path = doesntexist.cfg - # field should be 'path' so abspath should be ignored - abspath = /usr/bin/foodoesntexist.bar - path = /usr/bin/foodoesntexist.bar - # should be relative to the path of this config file - path = ./git_config-inc.cfg -# and defined after include. According to the documentation -# and behavior of git config, this should be the value since -# inclusions should be processed immediately -[sec] - var1 = value1_main - |
