aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)Author
2020-09-29Add venv to gitignoreSagi Shadur
2019-10-15As string is iterable, changed to isinstance checkMarcel
test now works
2018-12-22try fix tests: Force Flake8 to like our codeSebastian Thiel
I actually tried to fix the W504/W503 errors, but failed ungracefully. Also there was no help online, nor was there something that would automatically fix it. No, I am not ever again spend time trying to pacify linters, they have to fix it automatically.
2016-03-28fix(refs): don't raise StopIterationSebastian Thiel
Fixes #394
2015-01-12Added specific test for roughly checking configuration paths.Sebastian Thiel
For some reason, I didn't trust the existing one as it tests that code more indirectly. Related to #160
2014-11-14Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-toxSebastian Thiel
Conflicts: README.md requirements.txt setup.py
2014-11-14Prepared release 0.3.20.3.2Sebastian Thiel
It represents the latest state on github, which should be better than what's installed by default. [skip ci]
2014-07-25Use tox to easily run tests in venvAntoine Musso
tox https://pypi.python.org/pypi/tox is a thin wrapper around virtualenv which let you craft a fresh python environement to execute command in. It creates the env with virtualenv, install dependencies, run python setup.py install in it and then execute whatever command you want it to do and report status. To do so I simply: - listed tests dependencies in test-requirements.txt (which are just nose and mock) - provide a tox.ini file which describe how to install the dependencies and execute nosetests - added the module 'coverage' to the list of test dependencies To run tests simply: pip install tox && tox That will execute the test command 'nosetests' using python2.6 and then python 2.7. The additional env 'cover' can be run using: tox -ecover.
2014-07-14Added sublime-text projectSebastian Thiel
As relative paths are used througout, it will work for everyone using sublime text out of the box.
2014-05-19Added coverage reportSebastian Thiel
2010-10-25.gitignore will now ignore netbeans projectsSebastian Thiel
Fixed test which used the --force flag on move, but there is only a short version (left) it appears
2009-10-01/doc/_build is not interesting...Martin Marcher
2008-06-13Added /dist to .gitignoreSverre Rabbelier
2008-05-29gitignore: add ignores for common emacs and vim temporary filesDavid Aguilar
vim saves temporary data in $FILENAME.swp. emacs saves backups in $FILENAME~. .gitignore now ignores all of these entries. Signed-off-by: David Aguilar <davvid@gmail.com>
2008-05-28gitignore: ignore eggs, .pyo's and /buildDavid Aguilar
This commit sets up .gitignore so that it properly ignores both .pyo and .pyc files. The egg path was updated so that it is prepended with a "/". "/build" was added to the list of ignored paths since it is customary for setuptools to use that directory for builds. Signed-off-by: David Aguilar <davvid@gmail.com>
2008-05-20added .gitignore to ignore *.pyc files and the egg-info stuff.Florian Apolloner