summaryrefslogtreecommitdiff
path: root/tests/test_ext_intersphinx.py
Commit message (Collapse)AuthorAgeFilesLines
* A happy new year!Takeshi KOMIYA2021-01-011-1/+1
| | | | | | | .. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
* refactor with pyupgradeTakeshi KOMIYA2020-11-251-1/+1
| | | | | | Run `pyupgrade --py3-only --keep-percent-format` to refine our code. Note: --keep-percent-format is required to keep translations available.
* Make tests/ a Python packageFrançois Freitag2020-11-201-2/+3
| | | | Allows relative imports.
* refactor: Fix flake8 violations under tests/ directoryTakeshi KOMIYA2020-11-151-1/+0
|
* Sort imports with isortFrançois Freitag2020-11-111-5/+3
| | | | | | | | | | | | 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.
* Rewrite test_inspect_main_url to avoid mockingFrançois Freitag2020-11-081-15/+15
| | | | | | | Makes the test more realistic by issuing an HTTP request. Reduces coupling between test and the code under test. The `http_server` helper was factored out into a new tests.utils module.
* Merge branch '2.4.x' into 3.xTakeshi KOMIYA2020-02-221-0/+6
|\
| * Fix #7183: intersphinx: ``:attr:`` reference to property is brokenTakeshi KOMIYA2020-02-221-0/+6
| |
* | test: Use read_text() and read_bytes()Takeshi KOMIYA2020-02-011-1/+1
|/
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* Fix #6140: Use unittest.mock instead of mockTakeshi KOMIYA2019-03-081-1/+1
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | intersphinx: Normalize mapping on config-initedTakeshi KOMIYA2018-12-171-1/+10
| |
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
* | Avoid respecifying default encoding for .encode()/.decode() callsJon Dufresne2018-12-151-1/+1
|/ | | | | | | | | | | In Python 3, both .encode() and .decode() default the encoding to 'utf-8'. See the docs: https://docs.python.org/3/library/stdtypes.html#str.encode https://docs.python.org/3/library/stdtypes.html#bytes.decode Simplify and shorten the code by using the default instead of respecifying it.
* Fix #4664: Reading objects.inv fails againTakeshi KOMIYA2018-02-231-10/+10
|
* Fix flake8 violationsTakeshi KOMIYA2018-02-191-5/+5
|
* Merge branch 'stable' into 1.7-releaseTakeshi KOMIYA2018-02-031-0/+32
|\
| * intersphinx: Add testcase for inventory fallbacksTakeshi KOMIYA2018-01-311-0/+32
| |
* | Fix #4209: intersphinx: In link title, "v" should be optional if target has ↵Takeshi KOMIYA2018-01-301-1/+20
| | | | | | | | no version
* | Fix #4079: Add notranslate class to let Google Translate know they are not ↵Takeshi KOMIYA2018-01-131-1/+2
| | | | | | | | translatable
* | Merge commit '4277eb13315d5649401190df86874b3832ddfa3e'Takeshi KOMIYA2018-01-071-1/+7
|\ \ | |/
| * Fix links to external option docs with intersphinx (refs: #3769)Takeshi KOMIYA2018-01-021-1/+7
| |
* | Merge branch 'happy_new_year' into masterTakeshi KOMIYA2018-01-011-1/+1
|\ \ | |/
| * A happy new year!Takeshi KOMIYA2018-01-011-1/+1
| |
* | Fix flake8 violationsTakeshi KOMIYA2017-12-231-1/+0
| |
* | Some cleanup to avoid using the std:: namespaceAndy Neebel2017-09-281-0/+7
| |
* | C++, adapt sphinx-doc/sphinx#3894 after merge to masterJakob Lykke Andersen2017-09-281-6/+0
| | | | | | | | Fixes sphinx-doc/sphinx#4082
* | Comment out broken test cases temporarilyTakeshi KOMIYA2017-09-241-6/+6
|/
* Improve cpp intersphinx supportAndy Neebel2017-06-261-0/+6
| | | | | Now types called out in function declarations will be searched for in the intersphinx inventory as well
* Mark tests as xfail/skip to allow successful runAndy Neebel2017-06-141-0/+2
|
* Implement get_full_qualified_name() to CPPDomain (refs: #3630)Takeshi KOMIYA2017-04-231-0/+20
|
* Implement get_full_qualified_name() to JavascriptDomain (refs: #3630)Takeshi KOMIYA2017-04-231-0/+24
|
* Implement get_full_qualified_name() to StandardDomain (refs: #3630)Takeshi KOMIYA2017-04-231-37/+74
|
* Fix #3351: intersphinx does not refers contextTakeshi KOMIYA2017-04-161-0/+12
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|\
| * Year++Takeshi KOMIYA2017-03-261-1/+1
| |
* | Merge branch 'stable'Takeshi KOMIYA2017-03-221-1/+54
|\ \ | |/
| * Fix intersphinx debug toolDavid Baumgold2017-03-211-1/+55
| | | | | | | | and add automated tests
* | Move InventoryFile class to sphinx.util.inventoryTakeshi KOMIYA2017-03-021-56/+4
| |
* | intersphinx: Add InventoryFile utilityTakeshi KOMIYA2017-03-021-9/+9
| |
* | intersphinx: Add ZlibReader utilityTakeshi KOMIYA2017-03-021-14/+8
| |
* | Move doc reference to under standard domainTakeshi KOMIYA2017-01-291-0/+5
|/
* Fix flake8 violationsTakeshi KOMIYA2017-01-261-1/+1
|
* pytest: remove deprecated with_app decorator functionsshimizukawa2017-01-061-5/+0
|
* pytest: remove deprecated with_tempdir decoratorshimizukawa2017-01-061-3/+1
|
* pytest migrationshimizukawa2017-01-041-1/+1
|
* To simplify, sphinx uses external mock package even if unittest.mock exists.shimizukawa2016-10-151-1/+2
|
* Merge pull request #2056 from erosennin/intersphinx-fix-relative-pathTakeshi KOMIYA2016-09-141-0/+15
|\ | | | | Fix relative paths in intersphinx links