summaryrefslogtreecommitdiff
path: root/tests/roots/test-ext-viewcode-find
Commit message (Collapse)AuthorAgeFilesLines
* Run the ``pyupgrade`` toolAdam Turner2022-10-171-2/+2
|
* Remove unneeded `noqa` lint suppression comments (#10772)danieleades2022-08-281-1/+1
|
* Sort imports with isortFrançois Freitag2020-11-111-1/+1
| | | | | | | | | | | | Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip.
* test: Omit master_doc settings from testcasesTakeshi KOMIYA2019-01-031-1/+0
|
* Remove coding magic comments from testsTakeshi KOMIYA2019-01-021-2/+0
|
* Remove absolute_importTakeshi KOMIYA2018-12-171-3/+0
|
* py3: Remove (most) __future__ importsStephen Finucane2018-12-171-0/+1
| | | | | | | | | | | | | | | | | | | There were two used: - print_function - absolute_import Both of these are mandatory in Python 3.0 onwards [1] and can therefore be removed...mostly. Unfortunately, mypy is still running in Python 2.7 mode, meaning we need the 'print_function' future wherever we're calling 'print' with the 'file' argument. There's also a single 'absolute_import' future that must be retained as its removal breaks a test for as-yet unknown reasons. TODOs are added to resolve both issues in the future. [1] https://docs.python.org/3/library/__future__.html Signed-off-by: Stephen Finucane <stephen@that.guru>
* Fix flake8 violations on testsTakeshi KOMIYA2018-07-282-3/+1
|
* Rename viewcode_import to viewcode_follow_imported_members (refs: #4035)Takeshi KOMIYA2018-05-071-1/+1
|
* Plugins can find source code for viewcodeAshley Whetter2018-04-244-0/+80
Fixes #4035