aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
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