aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2016-09-28appveyor: Try to fix conda-3.4 & READM line-wdithKostis Anagnostopoulos
2016-09-28Win, #519: FIX undead Git-daemon on WindowsKostis Anagnostopoulos
+ On MINGW-git, daemon exists but if invoked as 'git daemon', DAEMON CANNOT DIE! + So, launch `git-daemon` on Apveyor, but - remote TCs fail due to paths problems. + Updated README instructions on Windows. + Restore disabled remote TCs on Windows. + Disable failures on daemon-tests only the last moment (raise SkipTest) so when ready, it will also pass.
2016-09-25apveyor: Wintest project with MINGW/Cygwin git (conda2.7&3.4/cpy-3.5)Kostis Anagnostopoulos
[travisci skip]
2016-09-25doc(platforms): inform more clearly about best-effortSebastian Thiel
This has been the case for Windows as well, and is now made official. Certain tests already fail on windows, for example.
2016-09-25doc(README): add waffle.io infoSebastian Thiel
[skip ci]
2016-09-11doc(limitations): be very clear about known issuesSebastian Thiel
Fixes #508
2016-07-23doc(README): remove pypi badgesSebastian Thiel
They don't seem to work anymore. [skip ci]
2016-07-23doc(README): remove issue statsSebastian Thiel
They do not get updated for some reason, generally the site is not quite production ready it seems, or is by now overwhelmed. [skip ci]
2016-06-21chore(tests): test-initialization via scriptSebastian Thiel
Fixes #478
2016-06-13doc(README): add basic contribution guidelinesSebastian Thiel
The main point is that from now on, tests are required to add new features. If the fix is minor enough, not having a test is probably alright. That distinction is not represented in the contribution guide as more tests are better - people should prefer to have a test whenever they contribute anything. My motivation to finally do this is the sad realization that I grow too unconfident about the quality of some contributions without having tests that proof they are valid. It's not enough to not break anything that exists, as the current test-suite is certainly not perfect either.
2016-06-01chore(compat): state py2.6 support officiallySebastian Thiel
More information in the respective issue. Fixes #453
2016-04-24Automate steps to upload to PyPIVincent Driessen
2016-04-24Information on how to make a release on pypiSebastian Thiel
2015-09-25docs(README): remove link to (now deleted) mailing listSebastian Thiel
2015-08-08docs(README): removed coveralls linkSebastian Thiel
Coveralls was disabled a while ago because it would prevent merging PRs from the phone.
2015-06-26docs(README): travis badge for master, not 0.3Sebastian Thiel
2015-04-10docs(README): added code-climate badgeSebastian Thiel
We are not too good, but nothing to shy away from.
2015-04-08docs(README): remove future goalsSebastian Thiel
Because there are none.
2015-02-02An attempt to better steer questions and answers.Sebastian Thiel
Currently, people put it onto the mailing list and on stack overflow [ci skip]
2015-01-22Overhauled all tutorials, and placed them in a unit-test.Sebastian Thiel
That way they are protected from regression. Fixes #239
2015-01-21Added advance usage examples to tutorial and made minor fixes.Sebastian Thiel
GIT_PYTHON_TRACE would actually fail (now) if we debugged archive operations. Related to #239
2015-01-13Fixed youtube playlist linkSebastian Thiel
[ci skip]
2015-01-10Added twitch/youtube information to ReadmeSebastian Thiel
2015-01-06Updated branch in coverage descriptionSebastian Thiel
2015-01-06Updated readme to better represent current stateSebastian Thiel
And to trigger travis to build and work ...
2015-01-04initial set of adjustments to make (most) imports work.Sebastian Thiel
More to come, especially when it's about strings
2015-01-04Bumped version, updated changelog, reduced code smellSebastian Thiel
There is more work to do though, as many imports are still incorrect. Also, there are still print statements
2014-11-19Added build-the-docs badge and updated urlSebastian Thiel
2014-11-14Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-toxSebastian Thiel
Conflicts: README.md requirements.txt setup.py
2014-11-14Updated README to better represent current stateSebastian Thiel
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-25List runtime dependencies in requirements.txtAntoine Musso
More and more packages are listing their dependencies in requirements.txt which make it trivial to maintain and install them.
2014-07-24Update README.md to use fixed dateAntoine Musso
Relative dates are not that precise, so instead of 3 years ago set it the last release date to July 2011.
2014-05-19Added coverage reportSebastian Thiel
2014-05-07Updated readme with development statusSebastian Thiel
[skip ci]
2014-05-04Fixed travis-ci url in ReadmeSebastian Thiel
2014-05-04Added support for travis ciSebastian Thiel