<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/tests/fixtures, branch pre_commit_config</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>Add paths option in local-plugins config file.</title>
<updated>2017-10-25T02:58:18+00:00</updated>
<author>
<name>Carl Meyer</name>
<email>carl@oddbird.net</email>
</author>
<published>2017-10-23T23:49:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=423980164b258b2ec77d8d9bfccb9bc00b220e31'/>
<id>423980164b258b2ec77d8d9bfccb9bc00b220e31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for local (in-repo, non-setuptools) plugins.</title>
<updated>2017-08-03T07:25:37+00:00</updated>
<author>
<name>Carl Meyer</name>
<email>carl@oddbird.net</email>
</author>
<published>2017-08-03T07:25:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=4e58068657ece52e3f1636cb028e42c15b86fec3'/>
<id>4e58068657ece52e3f1636cb028e42c15b86fec3</id>
<content type='text'>
Closes #357
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #357
</pre>
</div>
</content>
</entry>
<entry>
<title>Reproduce quiet/verbose config problem</title>
<updated>2017-07-22T07:18:58+00:00</updated>
<author>
<name>Shinya Kawaguchi</name>
<email>rm.true.dev@gmail.com</email>
</author>
<published>2017-07-22T07:06:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=98b9946a7893824779d87120d5c13ea2eace72c8'/>
<id>98b9946a7893824779d87120d5c13ea2eace72c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle SyntaxErrors after new-lines specially</title>
<updated>2016-10-23T12:37:08+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-10-23T12:02:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=7998734fe62ce1d037b6b7932e51ec37e949ac59'/>
<id>7998734fe62ce1d037b6b7932e51ec37e949ac59</id>
<content type='text'>
In some cases, when we handle SyntaxErrors we need to ensure that the
column number is correct for a 1-indexed report. In some cases, we also
need to account for the fact that the SyntaxError has happened "after" a
new-line. To extract and alter the row and column numbers, we've moved
the logic to a private static method on the FileChecker object to avoid
an overly complex method.

Closes #237
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In some cases, when we handle SyntaxErrors we need to ensure that the
column number is correct for a 1-indexed report. In some cases, we also
need to account for the fact that the SyntaxError has happened "after" a
new-line. To extract and alter the row and column numbers, we've moved
the logic to a private static method on the FileChecker object to avoid
an overly complex method.

Closes #237
</pre>
</div>
</content>
</entry>
<entry>
<title>Add empty file as a test fixture</title>
<updated>2016-07-10T00:41:47+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-07-10T00:41:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=8e27f0fbcf96b41834dcba2f135cd48724ba81ab'/>
<id>8e27f0fbcf96b41834dcba2f135cd48724ba81ab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Parse hyphenated config names also</title>
<updated>2016-06-28T10:47:14+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-06-28T10:47:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=31c32e3327c50ff713445280c061bf2c255feb19'/>
<id>31c32e3327c50ff713445280c061bf2c255feb19</id>
<content type='text'>
Previously Flake8 parsed both

    max-line-length = 110

And

    max_line_length = 110

From the config file without issue. When we updated our logic, I forgot
to test for that and we lost that behaviour temporarily.

Closes #152
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously Flake8 parsed both

    max-line-length = 110

And

    max_line_length = 110

From the config file without issue. When we updated our logic, I forgot
to test for that and we lost that behaviour temporarily.

Closes #152
</pre>
</div>
</content>
</entry>
<entry>
<title>Add broken config file to test error handling</title>
<updated>2016-06-16T21:19:09+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-06-16T21:19:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=3f434f7d1cf3f7a8e48456410db94376bae4bc24'/>
<id>3f434f7d1cf3f7a8e48456410db94376bae4bc24</id>
<content type='text'>
ConfigFileFinder should absolutely handle broken/invalid config files
by refusing to try to parse them. Here we catch the ParsingError,
log the exception, and then return normally. The RawConfigParser
instance is perfectly valid still and will behave as if nothing had
been read and we just need to indicate that we didn't find any files
worthy of reading.

Related to: https://github.com/PyCQA/pycodestyle/issues/506
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ConfigFileFinder should absolutely handle broken/invalid config files
by refusing to try to parse them. Here we catch the ParsingError,
log the exception, and then return normally. The RawConfigParser
instance is perfectly valid still and will behave as if nothing had
been read and we just need to indicate that we didn't find any files
worthy of reading.

Related to: https://github.com/PyCQA/pycodestyle/issues/506
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test fixture that mirrors documented usage</title>
<updated>2016-06-07T23:46:58+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-06-07T23:46:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=ba7f4db7e9cec133f3baaa34da9cdadcef2ee68d'/>
<id>ba7f4db7e9cec133f3baaa34da9cdadcef2ee68d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Start adding test fixture files</title>
<updated>2016-06-07T23:03:58+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-06-07T23:03:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=2cd3ac91d1f3006a0062351869935c1a1b72d14f'/>
<id>2cd3ac91d1f3006a0062351869935c1a1b72d14f</id>
<content type='text'>
This adds E501 which is actually a poor test. Currently,
pep8.maximum_line_length does its own check for noqa instead of relying
on the Checker. See also: https://github.com/PyCQA/pycodestyle/pull/539
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds E501 which is actually a poor test. Currently,
pep8.maximum_line_length does its own check for noqa instead of relying
on the Checker. See also: https://github.com/PyCQA/pycodestyle/pull/539
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tests for parse_unified_diff</title>
<updated>2016-06-07T15:14:45+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-06-07T15:14:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=9ebaa5c69c7dc7077d1f59141a863d22e23284c0'/>
<id>9ebaa5c69c7dc7077d1f59141a863d22e23284c0</id>
<content type='text'>
We could probably use non-git diff fixtures, but those are what we have
for now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We could probably use non-git diff fixtures, but those are what we have
for now.
</pre>
</div>
</content>
</entry>
</feed>
