Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use the same regex as the Actor class when determining co-authors. | Twist | 2022-08-24 | 1 | -1/+1 |
| | |||||
* | Add malformed co-authors to the test, to check they aren't detected with the ↵ | Twist | 2022-08-23 | 1 | -2/+6 |
| | | | | regex. | ||||
* | Add co_authors property to the Commit object, which parses the commit ↵ | Twist | 2022-08-22 | 1 | -0/+11 |
| | | | | message for designated co-authors, include a simple test. | ||||
* | reformat according to 'black' configuration file. | Sebastian Thiel | 2022-05-18 | 1 | -54/+20 |
| | |||||
* | Run everything through 'black' | Sebastian Thiel | 2022-05-18 | 1 | -92/+160 |
| | | | | | That way people who use it won't be deterred, while it unifies style everywhere. | ||||
* | Use git interpret-trailers for trailers property | Ket3r | 2022-01-07 | 1 | -2/+2 |
| | | | | | | | The whitespace handling and trailer selection isn't very trivial or good documented. It therefore seemed easier and less error prone to just call git to parse the message for the trailers section and remove superfluos whitespaces. | ||||
* | Add failing unit test | Peter Kempter | 2022-01-07 | 1 | -0/+46 |
| | |||||
* | Rmv old py2.7 __future__ imports | Yobmod | 2021-07-19 | 1 | -2/+0 |
| | |||||
* | rmv python 3.5 checks from tests | Yobmod | 2021-07-19 | 1 | -1/+1 |
| | |||||
* | Type Traversable.traverse() better, start types of submodule | Yobmod | 2021-06-30 | 1 | -0/+13 |
| | |||||
* | add replace method to git.Commit | Lars Kellogg-Stedman | 2021-02-15 | 1 | -0/+20 |
| | | | | | | | | | | | This adds a replace method to git.Commit. The replace method returns a copy of the Commit object with attributes replaced from keyword arguments. For example: >>> old = repo.head.commit >>> new = old.replace(message='This is a test') closes #1123 | ||||
* | Fix inheritance issue at commit.iter_items | Yuri Volchkov | 2021-02-05 | 1 | -0/+7 |
| | | | | | | | The iterator used to yield Commit() objects, which does not play well with inheritance. Yield cls() instead. Signed-off-by: Yuri Volchkov <yuri@volch.org> | ||||
* | tests: move to root dir | Konrad Weihmann | 2020-07-12 | 1 | -0/+393 |
| | | | | | | | | | 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> | ||||
* | Revert moving tests out of 'git' folder, related to #1030 | Sebastian Thiel | 2020-07-12 | 1 | -393/+0 |
| | |||||
* | tests: move to root dir | Konrad Weihmann | 2020-07-12 | 1 | -0/+393 |
| | | | | | | | | | 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> | ||||
* | Moved everything into the git subdirectory - some tests still need to be ↵ | Sebastian Thiel | 2010-11-25 | 1 | -275/+0 |
| | | | | adjusted | ||||
* | Initial interface including some of the implementation of the RefLog. ↵ | Sebastian Thiel | 2010-11-23 | 1 | -0/+2 |
| | | | | | | TestCase scetched out for now tests: Added tests to verify that objects don't have a dict. Previously, due to a missing __slots__ member in Serializable, most objects would indeed have a dict, although the opposite was intended | ||||
* | Updated MANIFEST and setup to include fixtures. Adjusted includes in all ↵ | Sebastian Thiel | 2010-11-21 | 1 | -1/+1 |
| | | | | tests to work with the new directory structure | ||||
* | flattened test folder structure, didn't adjust any file content yet | Sebastian Thiel | 2010-11-21 | 1 | -0/+273 |