<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/.gitignore, branch 2.0.8</title>
<subtitle>github.com: gitpython-developers/GitPython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/'/>
<entry>
<title>fix(refs): don't raise StopIteration</title>
<updated>2016-03-28T08:25:05+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2016-03-28T08:25:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=c4c6851c55757fb0bc9d77da97d7db9e7ae232d7'/>
<id>c4c6851c55757fb0bc9d77da97d7db9e7ae232d7</id>
<content type='text'>
Fixes #394
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #394
</pre>
</div>
</content>
</entry>
<entry>
<title>Added specific test for roughly checking configuration paths.</title>
<updated>2015-01-12T09:25:15+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2015-01-12T09:25:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=dfb0a9c4bca590efaa86f8edc3fdb62bd536bce7'/>
<id>dfb0a9c4bca590efaa86f8edc3fdb62bd536bce7</id>
<content type='text'>
For some reason, I didn't trust the existing one as it tests that code
more indirectly.

Related to #160
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For some reason, I didn't trust the existing one as it tests that code
more indirectly.

Related to #160
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'tox' of https://github.com/hashar/GitPython into hashar-tox</title>
<updated>2014-11-14T15:15:31+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2014-11-14T15:10:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=c914637ab146c23484a730175aa10340db91be70'/>
<id>c914637ab146c23484a730175aa10340db91be70</id>
<content type='text'>
Conflicts:
	README.md
	requirements.txt
	setup.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	README.md
	requirements.txt
	setup.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepared release 0.3.2</title>
<updated>2014-11-14T14:52:34+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2014-11-14T14:52:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=c5452aa820c0f5c2454642587ff6a3bd6d96eaa1'/>
<id>c5452aa820c0f5c2454642587ff6a3bd6d96eaa1</id>
<content type='text'>
It represents the latest state on github, which should be better than
what's installed by default.

[skip ci]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It represents the latest state on github, which should be better than
what's installed by default.

[skip ci]
</pre>
</div>
</content>
</entry>
<entry>
<title>Use tox to easily run tests in venv</title>
<updated>2014-07-25T09:20:27+00:00</updated>
<author>
<name>Antoine Musso</name>
<email>hashar@free.fr</email>
</author>
<published>2014-07-25T09:01:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=2ddd5e5ef89da7f1e3b3a7d081fbc7f5c46ac11c'/>
<id>2ddd5e5ef89da7f1e3b3a7d081fbc7f5c46ac11c</id>
<content type='text'>
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 &amp;&amp; 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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &amp;&amp; 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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added sublime-text project</title>
<updated>2014-07-14T10:45:15+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2014-07-14T10:45:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=c544101eed30d5656746080204f53a2563b3d535'/>
<id>c544101eed30d5656746080204f53a2563b3d535</id>
<content type='text'>
As relative paths are used througout, it will work for everyone using
sublime text out of the box.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As relative paths are used througout, it will work for everyone using
sublime text out of the box.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added coverage report</title>
<updated>2014-05-19T21:42:55+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2014-05-19T21:42:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=13e3a809554706905418a48b72e09e2eba81af2d'/>
<id>13e3a809554706905418a48b72e09e2eba81af2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>.gitignore will now ignore netbeans projects</title>
<updated>2010-10-25T09:58:11+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>byronimo@gmail.com</email>
</author>
<published>2010-10-25T09:58:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=8858a63cb33319f3e739edcbfafdae3ec0fefa33'/>
<id>8858a63cb33319f3e739edcbfafdae3ec0fefa33</id>
<content type='text'>
Fixed test which used the --force flag on move, but there is only a short version (left) it appears
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixed test which used the --force flag on move, but there is only a short version (left) it appears
</pre>
</div>
</content>
</entry>
<entry>
<title>/doc/_build is not interesting...</title>
<updated>2009-10-01T16:45:03+00:00</updated>
<author>
<name>Martin Marcher</name>
<email>martin@marcher.name</email>
</author>
<published>2009-10-01T16:45:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=53ed0d43ab950d4deeefd238c7685dabef943800'/>
<id>53ed0d43ab950d4deeefd238c7685dabef943800</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added /dist to .gitignore</title>
<updated>2008-06-13T18:39:52+00:00</updated>
<author>
<name>Sverre Rabbelier</name>
<email>sverre@rabbelier.nl</email>
</author>
<published>2008-06-11T17:35:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=9b63b3bc493a4a44ba1d857c78e4496e40f1d7b8'/>
<id>9b63b3bc493a4a44ba1d857c78e4496e40f1d7b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
