Skip to content

BF: process included files before the rest #700

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Dec 11, 2017
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ccff34d
version up
Byron Sep 28, 2017
d78e368
Merge tag '2.1.7' into bf-version so VERSION content is appropriate
yarikoptic Nov 27, 2017
cd6e82c
BF: process included files before the rest
yarikoptic Nov 27, 2017
0a96030
Merge pull request #699 from yarikoptic/bf-version
yarikoptic Nov 27, 2017
d2c1d19
BF: wrap map into list, since iterator is not well digested by GitCon…
yarikoptic Nov 28, 2017
6ee08fc
RF: primarily flake8 lints + minor RF to reduce duplication in PATHEXT
yarikoptic Nov 28, 2017
086af07
BF(PY26): {} -> {0}, i.e. explicit index for .format()
yarikoptic Nov 28, 2017
e1aea3a
BF: crazy tests ppl pass an object for status... uff -- catch TypeErr…
yarikoptic Nov 28, 2017
c352dba
RF: last of flake8 fails - avoid using temp variable in a test
yarikoptic Nov 28, 2017
42e89cc
RF(+BF?): refactor hooks creation in a test, and may be make it compa…
yarikoptic Nov 28, 2017
d723148
ENH: add appveyor recipe to establish rdesktop login into the test box
yarikoptic Nov 28, 2017
dcfe242
ENH: also report where on sh, and echo msg when entering on_finish
yarikoptic Nov 28, 2017
0a67f25
RF: no "need" for custom shebang on windows since just does not work
yarikoptic Nov 28, 2017
6253625
Disable (but keep for future uses commented out) hook into appveyor s…
yarikoptic Nov 28, 2017
91b9bc4
RF(TST): skip all tests dealing with hooks on windows
yarikoptic Nov 28, 2017
b4459ca
BF(WIN): use where instead of which while looking for git
yarikoptic Nov 28, 2017
cc34077
RF: use HIDE_WINDOWS_KNOWN_ERRORS instead of is_win to skip hooks tests
yarikoptic Nov 28, 2017
4d851a6
BF(WIN): where could report multiple hits, so choose first
yarikoptic Nov 28, 2017
f48d087
to keep travis busy - adding myself to AUTHORS
yarikoptic Dec 1, 2017
a14277e
Merge pull request #702 from yarikoptic/bf-happy-travis
Byron Dec 11, 2017
0a6cb4a
Merge branch 'bf-includes' of https://github.com/yarikoptic/GitPython…
Byron Dec 11, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
RF: last of flake8 fails - avoid using temp variable in a test
  • Loading branch information
yarikoptic committed Nov 28, 2017
commit c352dba143e0b2d70e19268334242d088754229b
3 changes: 1 addition & 2 deletions git/test/test_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ def test_traversal(self):
# at some point, both iterations should stop
self.assertEqual(list(bfirst)[-1], first)
stoptraverse = self.rorepo.commit("254d04aa3180eb8b8daf7b7ff25f010cd69b4e7d").traverse(as_edge=True)
l = list(stoptraverse)
self.assertEqual(len(l[0]), 2)
self.assertEqual(len(next(stoptraverse)), 2)

# ignore self
self.assertEqual(next(start.traverse(ignore_self=False)), start)
Expand Down