summaryrefslogtreecommitdiff
path: root/git/test/test_git.py
Commit message (Collapse)AuthorAgeFilesLines
* Replaced ordered dict with standard version; used logging moduleSebastian Thiel2015-01-041-1/+3
| | | | All performance tests still print to stderr, but do so in a py3 compatible way
* This should help getting travis to work, finallySebastian Thiel2015-01-031-1/+1
|
* Applied autopep8Sebastian Thiel2014-11-191-10/+11
| | | | | Commandline was autopep8 -j 8 --max-line-length 120 --in-place --recursive --exclude "*gitdb*,*async*" git/
* Copy environment for subprocess executionDarragh Bailey2014-11-171-0/+6
| | | | | | | | | | Git utilizes multiple environment variables to control various behaviours. Make sure to set LC_MESSAGES on a copy of the environment instead of discarding any variables that may be set by the user or default shell environment such as EDITOR. Add test to assert that when overriding GIT_EDITOR via os.environ that the modified value will be picked up by and git commands called.
* pep8 linting (trailing whitespace)Antoine Musso2014-11-161-1/+1
| | | | W291 trailing whitespace
* pep8 linting (whitespace before/after)Antoine Musso2014-11-161-7/+7
| | | | | | | | | | | | | E201 whitespace after '(' E202 whitespace before ')' E203 whitespace before ':' E225 missing whitespace around operator E226 missing whitespace around arithmetic operator E227 missing whitespace around bitwise or shift operator E228 missing whitespace around modulo operator E231 missing whitespace after ',' E241 multiple spaces after ',' E251 unexpected spaces around keyword / parameter equals
* pep8 linting (blank lines expectations)Antoine Musso2014-11-161-2/+1
| | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
* pep8 linting (whitespaces)Antoine Musso2014-11-161-3/+3
| | | | | | | | | | | W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
* Merge branch 'sf-master' of https://github.com/johnsca/GitPython into ↵Sebastian Thiel2014-11-151-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | johnsca-sf-master Conflicts: git/cmd.py git/objects/commit.py git/objects/fun.py git/objects/util.py git/remote.py git/repo/base.py git/test/lib/helper.py git/test/test_commit.py git/test/test_fun.py git/util.py
* | Updated README to better represent current stateSebastian Thiel2014-11-141-7/+6
| |
* | Basic test for __unpack_args to verify unicode handling worksCraig Northway2014-11-121-11/+20
| | | | | | | | | | | | | | | | (cherry picked from commit 8fa25b1cd5a82679c7b12d546b96c30cafed0559) Signed-off-by: David Black <dblack@atlassian.com> Conflicts: git/test/test_git.py
* | add git command optionsEric Brunson2014-04-251-0/+2
| | | | | | | | | | | | | | | | | | Add __call__ method to Git object to allow passing git command options to the executable requires flag to transform_kwargs add unit tests Change-Id: If1bc01008e66d3fd3811c15b56e58f38c95b9887
* | add git command optionsEric Brunson2014-04-251-0/+12
| | | | | | | | | | | | | | | | | | Add __call__ method to Git object to allow passing git command options to the executable requires flag to transform_kwargs add unit test Change-Id: If1bc01008e66d3fd3811c15b56e58f38c95b9887
* | Minor modifications to get tests back to work.Sebastian Thiel2014-02-101-9/+8
| | | | | | | | Two tests are failing in the latest git version, would have to dig into it
* | Adjusted required versions of pre-requisites, now the majority of the tests workSebastian Thiel2014-02-101-1/+1
| |
* | tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-90/+90
|/ | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Implemented GIT_PYTHON_GIT_EXECUTABLE including test and docsSebastian Thiel2011-07-051-0/+10
|
* Added version_info property to git command. Its cached and efficient, ↵Sebastian Thiel2011-06-071-66/+82
| | | | including test
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+84
adjusted