summaryrefslogtreecommitdiff
path: root/testsuite
Commit message (Collapse)AuthorAgeFilesLines
* Fix regression in catching E711 (issue #435), add testsAndrew Tonko2015-10-071-0/+18
|
* Test behaviour regarding multi-line ignore parsing in config_fileKristian Glass2015-08-222-1/+63
| | | | | At time of writing, these tests fail. If this is later fixed, someone may wish to remove this warning!
* Support Python 3.5Steven Myint2015-07-141-0/+3
| | | | | | | This involves fixing a test and avoiding a function deprecated since Python 3.0. https://docs.python.org/dev/library/inspect.html#inspect.getargspec
* Merge pull request #305 from yole/break-around-binary-operatorIan Lee2015-02-081-3/+3
|\ | | | | Thanks for the patch!
| * Report W503 for line breaks before binary operators; issue #197. #ep14boatDmitry Jemerov2014-07-241-3/+3
| |
* | Merge branch 'issue-363' into masterIan Lee2015-01-261-0/+3
|\ \
| * | Add flush method to test support PseudoFile object; issue #363Ian Lee2015-01-121-0/+3
| | |
* | | Update tests for issue #357Ian Lee2014-12-291-0/+5
|/ /
* | Merge pull request #360 from jcrocholl/issue-316Ian Lee2014-12-221-1/+4
|\ \ | | | | | | Add E121 and E126 to the DEFAULT_IGNORE list
| * | Update DEFAULT_IGNORE to add E121 & E126 per discussion in issues #256 #316Ian Lee2014-12-171-1/+4
| | |
* | | Add more test cases for E402; issue #304Ian Lee2014-12-201-0/+25
| | |
* | | Do not skip physical checks if the newline is escaped; issue #319issue319Florent Xicluna2014-12-182-1/+15
| | |
* | | Merge pull request #354 from jcrocholl/feature292Ian Lee2014-12-181-6/+6
|\ \ \ | |/ / |/| | Looks good!
| * | Do not enforce whitespaces around ** operator; issue #292feature292Florent Xicluna2014-12-161-6/+6
| | |
* | | Merge branch fixing issues #330 and #336Florent Xicluna2014-12-171-0/+15
|\ \ \
| * | | Fix false positive E713; issue #330issue336Florent Xicluna2014-12-161-0/+10
| | | |
| * | | Fix false positive E711/E712; issue #336Florent Xicluna2014-12-161-0/+5
| |/ /
* | | Add failing test for #323Ian Cordasco2014-12-171-0/+5
|/ /
* | Replace the IDENTIFIER_REGEX with the isidentifier functionFlorent Xicluna2014-12-161-3/+3
| |
* | Merge pull request #312 from sigmavirus24/bug/311Florent Xicluna2014-12-161-0/+11
|\ \ | | | | | | Fix #311. Add regex to check for field assignment
| * | Update fix for E731Ian Cordasco2014-08-081-0/+8
| | | | | | | | | | | | Thanks to @mypalmike for thinking of the extra cases
| * | Fix #311. Add regex to check for field assignmentIan Cordasco2014-08-071-0/+3
| |/
* | TestCase.assertEqual is the recommended spellingFlorent Xicluna2014-12-151-11/+11
| |
* | Remove noise from testsuite/E12not.pyFlorent Xicluna2014-12-151-2/+0
| |
* | Merge remote-tracking branch 'yole/import-on-top-of-file' into issue304Ian Lee2014-12-141-1/+1
|\ \
| * | Report E402 for imports not on top of file; issue #264. Also add ability to ↵Dmitry Jemerov2014-07-241-1/+1
| |/ | | | | | | keep local state for each checker plugin. #ep14boat
* | Merge pull request #340 from bdkearns/masterIan Lee2014-12-131-1/+3
|\ \ | | | | | | Merged, thanks!
| * | add .tox to DEFAULT_EXCLUDEBrian Kearns2014-10-231-1/+3
| |/
* | Merge pull request #347 from helenst/e711-reverse-comparisonIan Lee2014-12-131-0/+17
|\ \ | | | | | | Looks good, thanks!
| * | E711 / E712 checks test for None != arg and False == argHelen ST2014-12-111-0/+17
| |/ | | | | | | (Fixes #307)
* | Remove stdout check that fails under pypy.Ian Lee2014-12-131-8/+1
| | | | | | | | | | This second E901 error actually only shows up in the test framework and does not happen if you run the code within the Python interpreter.
* | Don't crash if build_tokens_line() returns None; issue #306Ian Lee2014-12-131-0/+45
| |
* | Add a few more cases of "not value"Ian Lee2014-12-131-0/+3
| |
* | Fix normalize_paths to allow whitespaceWill Kahn-Greene2014-11-062-1/+22
|/ | | | | | | | | | | | | This fixes normalize_paths so that it strips whitespace before and after paths before working on them. This allows you to do specify excludes with multiple lines in the config file. This also tweaks normalize_paths so that the behavior matches the docstring. This also adds tests. Fixes #339
* Do not report E704 in the default configuration; issue #277Florent Xicluna2014-05-291-1/+1
|
* Report E266 instead of E265 when the block common starts with multiple #; ↵Florent Xicluna2014-05-291-6/+29
|\ | | | | | | issue #270
| * Add position to E26 testsFlorent Xicluna2014-04-261-6/+6
| |
| * Report E266 instead of E265 when the block common starts with multiple #; ↵Florent Xicluna2014-04-261-0/+23
| | | | | | | | issue #270
* | Replace codes E111/2/3 with E114/5/6 for indentation of comments; issue #274Florent Xicluna2014-05-293-4/+24
|\ \
| * | Fix testsFlorent Xicluna2014-04-262-3/+3
| | |
| * | Replace codes E111/2/3 with E114/5/6 for indentation of comments; issue #274Florent Xicluna2014-04-261-1/+21
| |/
* | Report E731 for lambda assignment, return E704 for one-liner def instead of ↵Florent Xicluna2014-05-293-8/+22
|\ \ | | | | | | | | | E701; issue #277
| * | Add tests for E731, issue #277Florent Xicluna2014-04-261-0/+7
| | |
| * | Report E731 for lambda assignment, return E704 for one-liner def instead of ↵Florent Xicluna2014-04-262-8/+15
| | | | | | | | | | | | E701; issue #277
* | | Additional tests for W391Florent Xicluna2014-05-071-1/+10
| | |
* | | Check the last line even if it does not end with a NL; issue #286Florent Xicluna2014-05-071-0/+4
| |/ |/|
* | few mispelling errorsCarlos E. Garcia2014-04-231-1/+1
|/
* Merge checker W292 with checker W391 for better performanceFlorent Xicluna2014-04-141-1/+1
|
* Check the last line even if it has not EOL; issue #273Florent Xicluna2014-04-142-6/+13
|
* Fix regression with E22 checks and inline comments; issue #271Florent Xicluna2014-04-091-0/+5
|