summaryrefslogtreecommitdiff
path: root/git/test
Commit message (Collapse)AuthorAgeFilesLines
* Remove Python 2 testHarmon2020-02-081-6/+0
|
* Remove checks for Python 2 and/or 3Harmon2020-02-084-21/+4
|
* Remove and replace compat.xrangeHarmon2020-02-081-2/+1
|
* Added parsing for '@1400000000 +0000' date format as used by git commit hooks.Dries2019-12-291-0/+6
|
* Merge branch 'fix/deepsource-issues' of https://github.com/imkaka/GitPython ↵Sebastian Thiel2019-10-291-1/+1
|\ | | | | | | into imkaka-fix/deepsource-issues
| * Merge branch 'master' into fix/deepsource-issuesAnil Khatri2019-10-234-3/+89
| |\
| * | fixed unused variable found PYL-W0612Anil Khatri2019-10-221-1/+1
| | |
* | | Fix #920Victor Luzgin2019-10-281-0/+14
| | |
* | | Removing unused importJJ Graham2019-10-241-1/+1
| | |
* | | Fix #820JJ Graham2019-10-241-1/+1
| |/ |/|
* | Adding assertions to existing test case to cover this changeJJ Graham2019-10-221-1/+6
| |
* | Removing f-strings to maintain 3.4 and 3.5 compatabilityJJ Graham2019-10-211-4/+4
| |
* | Added new test to cover the issue this fix addresses (#891)JJ Graham2019-10-211-2/+48
| |
* | Fix pickling of tzoffsetUwe L. Korn2019-10-191-0/+7
| | | | | | | | Fixes #650
* | Expanded new test for copied fileJJ Graham2019-10-191-1/+4
| |
* | Fixed new test for copied filesJJ Graham2019-10-192-2/+1
| |
* | Adding diff support for copied files, still working on testJJ Graham2019-10-193-0/+26
|/
* removed Unnecessary pass statementPratik Anurag2019-10-151-1/+0
|
* removed trailing whitespacesPratik Anurag2019-10-151-1/+1
|
* removed trailing whitespacesPratik Anurag2019-10-151-2/+2
|
* removed trailing whitespacesPratik Anurag2019-10-151-1/+1
|
* removed trailing whitespacesPratik Anurag2019-10-151-1/+1
|
* Update test_streams.pyPratik Anurag2019-10-151-2/+2
|
* renamed unused variablesPratik Anurag2019-10-151-1/+1
|
* renamed unused variablesPratik Anurag2019-10-151-2/+2
|
* renamed unused variablesPratik Anurag2019-10-151-1/+1
|
* renamed unsed variablesPratik Anurag2019-10-151-1/+1
|
* renamed ununsed variablesPratik Anurag2019-10-151-1/+1
|
* renamed ununsed variablesPratik Anurag2019-10-151-1/+1
|
* As string is iterable, changed to isinstance checkMarcel2019-10-151-3/+5
| | | | test now works
* allow calling index.add, index.move and index.remove with single itemsMarcel2019-10-151-1/+8
| | | | | added testing for it closes #813
* remove previously added debug code from test_doc.pySebastian Thiel2019-09-301-1/+1
|
* Try to fix tests; get more debug outputSebastian Thiel2019-09-301-1/+1
|
* Parse rejected deletes.Uri Baghin2019-09-281-0/+8
|
* Remove assert that can fail erroneously.Uri Baghin2019-09-281-1/+0
|
* Fix test_commit_msg_hook_success.Uri Baghin2019-09-281-1/+1
|
* Fix #889: Add DeepSource config and fix some major issuesMohit Solanki2019-09-103-7/+10
|
* Adding testArthur Milchior2019-08-141-0/+22
|
* Fix performance regression, see #906Sebastian Thiel2019-08-141-1/+2
| | | | | | | | | Revert "use git rev-parse to look for config file" This reverts commit 0b6b90f9f1e5310a6f39b75e17a04c1133269e8f. Fix #906 Reopen #719
* Fix test bound to major versionSebastian Thiel2019-08-111-1/+1
|
* use git rev-parse to look for config fileBenjamin Dauvergne2019-08-111-2/+1
|
* Fix Git.transform_kwargFrantišek Nečas2019-07-291-0/+1
| | | | | | | Kwargs were not transformed correctly if a value was set to 0 due to wrong if condition. Signed-off-by: František Nečas <fifinecas@seznam.cz>
* Fix testSantos Gallegos2019-07-201-3/+2
|
* Add testSantos Gallegos2019-07-201-0/+19
|
* Add support to pass clone options that can be repeated multiple timesSteven Whitman2019-07-061-0/+16
|
* Satisfy flake8Sebastian Thiel2019-07-061-1/+2
| | | | | Oh how much I dislike linters that don't format, and a lack of formatter integration into my IDE :(.
* Fix regex to support empty email addresses i.e. 'name <>'Sebastian Thiel2019-07-061-0/+5
| | | | Fixes #833
* Merge branch 'multi-value' of https://github.com/ajdavis/GitPython into ↵Sebastian Thiel2019-07-062-1/+115
|\ | | | | | | ajdavis-multi-value
| * Use items and items_all correctlyA. Jesse Jiryu Davis2019-01-211-1/+11
| | | | | | | | #717
| * Support multiple git config values per optionA. Jesse Jiryu Davis2019-01-202-0/+104
| | | | | | | | Solves #717