<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/flake8, branch bug/52</title>
<subtitle>gitlab.com: pycqa/flake8.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/'/>
<entry>
<title>Change the git-hook ignore default to None</title>
<updated>2015-04-06T04:01:44+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-04-06T04:01:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=12fab2f8ad8f09553cebdf6a077519266eae9002'/>
<id>12fab2f8ad8f09553cebdf6a077519266eae9002</id>
<content type='text'>
When ignore is an empty string, it will apparently not run any checks at
all. Using None as the default ensures that it does run the appropriate
checks.

Closes #52
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When ignore is an empty string, it will apparently not run any checks at
all. Using None as the default ensures that it does run the appropriate
checks.

Closes #52
</pre>
</div>
</content>
</entry>
<entry>
<title>Move test back where it was</title>
<updated>2015-03-17T00:27:39+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-17T00:27:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=ef3a47a1551b0230a22f8c20d662ac7ea80d3841'/>
<id>ef3a47a1551b0230a22f8c20d662ac7ea80d3841</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Document the other things I tried</title>
<updated>2015-03-17T00:12:46+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-17T00:12:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=63d8af6af50fb2a838c973c50c363ff68ee80951'/>
<id>63d8af6af50fb2a838c973c50c363ff68ee80951</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run some tests separately</title>
<updated>2015-03-16T23:21:57+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-16T23:13:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=7663dbd485b2796fedebf96d3e44875e908dc59b'/>
<id>7663dbd485b2796fedebf96d3e44875e908dc59b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename file</title>
<updated>2015-03-16T23:21:56+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-16T23:14:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=59d632e0bfeec326daa7feba9ea71903ddc6cb4a'/>
<id>59d632e0bfeec326daa7feba9ea71903ddc6cb4a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Shorten variable name. Add comments</title>
<updated>2015-03-12T02:20:28+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-12T02:20:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=5dffadd67b7f9cbd30de68b20f6696809da79d5b'/>
<id>5dffadd67b7f9cbd30de68b20f6696809da79d5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix hook test on Windows</title>
<updated>2015-03-12T00:50:31+00:00</updated>
<author>
<name>Christian Long</name>
<email>christianzlong@gmail.com</email>
</author>
<published>2015-03-11T21:46:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=02308dab2a1c71562c2951564e3a1817d634bd7e'/>
<id>02308dab2a1c71562c2951564e3a1817d634bd7e</id>
<content type='text'>
This test was failing on Windows, for several reasons. Number one, the paths
for the hook test were hard-coded with forward slashes as path separators. I
replaced those with calls to os.path.join. Number two, the drive letter was
getting in the way of the path manipulation. On Windows, I'm using
os.path.splitdrive to fix that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This test was failing on Windows, for several reasons. Number one, the paths
for the hook test were hard-coded with forward slashes as path separators. I
replaced those with calls to os.path.join. Number two, the drive letter was
getting in the way of the path manipulation. On Windows, I'm using
os.path.splitdrive to fix that.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed some unused testing code.</title>
<updated>2015-03-09T18:27:15+00:00</updated>
<author>
<name>Michael McNeil Forbes</name>
<email>michael.forbes+numpy@gmail.com</email>
</author>
<published>2015-03-09T18:27:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=dca5551156a047841fe4b894f4d8dd939567b5a4'/>
<id>dca5551156a047841fe4b894f4d8dd939567b5a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix issue #39.</title>
<updated>2015-03-09T04:14:50+00:00</updated>
<author>
<name>Michael McNeil Forbes</name>
<email>michael.forbes+numpy@gmail.com</email>
</author>
<published>2015-03-09T04:13:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=1fd8b661749f90b51299fbc733a8e7fe7021968b'/>
<id>1fd8b661749f90b51299fbc733a8e7fe7021968b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test demonstrating issue #39</title>
<updated>2015-03-09T04:13:01+00:00</updated>
<author>
<name>Michael McNeil Forbes</name>
<email>michael.forbes+numpy@gmail.com</email>
</author>
<published>2015-03-09T04:13:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=da2b0b8a43d7765b4e64e43365406d9678791975'/>
<id>da2b0b8a43d7765b4e64e43365406d9678791975</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
