summaryrefslogtreecommitdiff
path: root/test/test_func.py
Commit message (Collapse)AuthorAgeFilesLines
* Move all package files to a pylint package.Ionel Cristian Maries2015-02-141-95/+0
|
* Fixed merge.Michal Nowikowski2014-07-301-20/+0
|
* mergeMichal Nowikowski2014-07-301-11/+6
|\
| * Remove the exhaustivity test from the old framework, it just creates ↵Torsten Marek2014-07-301-25/+0
| | | | | | | | needless churn right now. Once all test cases have been ported, it will be added again in the new framework.
| * Remove dependency on logilab.testlib in the test suite (also removes Python ↵Torsten Marek2014-07-261-7/+8
| | | | | | | | 2.5 compatibility).
| * mergeMichal Nowikowski2014-07-301-0/+1
| |\
| | * mergeMichal Nowikowski2014-07-281-9/+5
| | |\
| | * | Fixed tests for line endings checker.Michal Nowikowski2014-07-261-1/+1
| | | |
* | | | mergeMichal Nowikowski2014-07-301-0/+2
|\ \ \ \ | |/ / / |/| | |
| * | | Merged default into spelling-checkerMichal Nowikowski2014-07-281-9/+4
| |\ \ \ | | | |/ | | |/|
| * | | mergeMichal Nowikowski2014-07-261-3/+2
| |\ \ \ | | | |/ | | |/|
| * | | Tweaked spelling checker msg ids and removed them from exhaustivity tests.Michal Nowikowski2014-07-251-0/+2
| | | |
* | | | More test cases moved to the new test framework.Torsten Marek2014-07-271-1/+2
| |_|/ |/| |
* | | Only run the module tests, and make sure that no new test cases in the old ↵Torsten Marek2014-07-271-8/+1
| | | | | | | | | | | | test framework are added.
* | | Converted more test cases to the new test framework.Torsten Marek2014-07-261-1/+3
| |/ |/|
* | Merged logilab/pylint into defaultClaudiu Popa2014-07-251-2/+0
|\ \
| * | Mark 'relative-import' as only being present in Python 2.*.Torsten Marek2014-07-251-2/+0
| | |
* | | empty-docstring is now on the new test framework.cpopa2014-07-251-1/+1
|/ /
* | W0108 was ported.cpopa2014-07-251-1/+1
| |
* | Porting tests over to the new framework.Torsten Marek2014-07-251-1/+2
| |
* | Don't emit hidden-method message when the attribute has been monkey-patched,Sylvain Th?nault2014-07-251-1/+1
|/ | | | | | you're on your own when you do that Closes http://www.logilab.org/ticket/36653
* extract a messages store from the MessagesHandlerMixIn classSylvain Th?nault2014-07-241-3/+3
|
* Make pylint compatible with Python 2.5 again, and make all the tests pass ↵Torsten Marek2014-07-241-1/+1
| | | | (Closes: #278).
* Added a new test suite for functional tests.Torsten Marek2014-07-241-1/+3
| | | | | | Main changes: - version restrictions are not encoded in file names any more, but in option files - expected messages are annotated in the test files directly
* update test_func exhaustivity testingSylvain Th?nault2014-04-141-17/+8
| | | | | | | * skip messages that can not be emitted * use set instead of list * properly mark max version to some messages and drop now (almost) useless messages list
* delete trailing whitespacesSylvain Th?nault2014-04-141-1/+1
|
* Add a new command line option '-u' to test/test_func to automatically create ↵Torsten Marek2014-03-301-17/+15
| | | | or update expected messages files.
* Updated FSF address.Arun Persaud2014-02-231-1/+1
|
* Fix tests for handling the fact that all style are newstyle classes in Python 3.cpopa2014-01-221-2/+6
|
* [test] remove reference to droped test classSylvain Th?nault2013-12-191-2/+0
|
* [test] skip test which is not really useful and cause pb in tox or installed ↵Sylvain Th?nault2013-12-191-8/+1
| | | | environment (with '.' in path, such as python2.7)
* Take first steps to use the symbolic name internally instead of the numeric id.Torsten Marek2013-11-061-1/+1
| | | | | | | This changeset changes utils.py to use the symbolic name as the primary key in _messages, and the numeric ID as an alternative name in a new dictionary. Also prepares the codebase for supporting renamed messages.
* Use maxversion on a few messagesJulien Cristau2013-06-191-10/+1
| | | | | | - duplicate keyword arguments are a syntax error starting with 2.6 - the builtin map and filter functions changed in 3.0 - exec is no longer a statement in 3.0
* Ignore W0121 for python3Julien Cristau2013-06-191-0/+2
| | | | The old raise syntax doesn't exist anymore, so we can't warn about it.
* Ignore the test about deprecated map/filter and lambda for py3kJulien Cristau2013-06-181-0/+2
| | | | | Make deprecated_lambda python2-specific, and ignore the lack of reports with that message on python3.
* test: fix LintTestNonExistentModuleTC for python 3.3Julien Cristau2013-06-181-1/+6
| | | | They changed the error message format.
* Refactor test_func in order to extract common part for reutilization in ↵FELD Boris2012-07-041-162/+40
| | | | pylint-brain
* typo; fix py3k testsEmile Anclin2010-12-161-6/+3
|
* py3k tests: new list of remaining messagesEmile Anclin2010-12-061-1/+23
| | | | - skip tests that depend on python bugs
* tests: refactor possibility to have two messages or two inputsEmile Anclin2010-11-171-8/+1
|
* test_func: error message improvementEmile Anclin2010-11-161-4/+5
|
* test cleanupEmile Anclin2010-11-161-8/+0
|
* cleanup: we don't support python 2.2 anymoreEmile Anclin2010-11-081-10/+4
|
* test: make tests independent of current working directoryEmile Anclin2010-11-041-12/+32
|
* 223 : second expression of raise is instantiation argumentsEmile Anclin2010-11-021-1/+1
|
* py3k: remove deprecate "new" usageEmile Anclin2010-11-021-6/+3
|
* update to unittest2Sylvain Th?nault2010-09-281-3/+3
|
* apply emile's patch, fix test with python>=2.6Sylvain Th?nault2010-05-111-4/+7
|
* cleanup, d-t-w, fix remaining [en|dis] method callSylvain Th?nault2010-04-191-13/+13
|
* use generic disable / enable methods and inline optionSylvain Th?nault2010-04-191-2/+2
|