Tony Narlock
Tony Narlock
Implements #37 ## What's incomplete - Tests - Potentially: - pytest reporting / line numbers - [pytest doctest](https://github.com/pytest-dev/pytest/blob/7.1.x/src/_pytest/doctest.py) may be causing duplicate test items ## What's supported - reStructuredText: Pure...
re: #30 Naïve [`eval-rst`](https://myst-parser.readthedocs.io/en/latest/syntax/roles-and-directives.html#roles-directives:~:text=For%20special%20cases%2C%20MySt%20also%20offers%20the%20eval%2Drst%20directive.%20This%20will%20parse%20the%20content%20as%20ReStructuredText%3A) directive support. - Support `.md` - Adds `testdata/using_the_shapereader.md` - Tests `using_the_shapereader.md` in `test_cartopy` - Support for `{eval-rst}` and tests - `_DIRECTIVE_RE` improvements - Use verbose, named...
I think having docutils as a backend parser will make the experience more resilient + make myst easier to integrate. But I am not all the way through the APIs...
[myst-parser](https://myst-parser.readthedocs.io/) ([github](https://github.com/executablebooks/MyST-Parser)) [supports sphinx roles](https://myst-parser.readthedocs.io/en/latest/syntax/roles-and-directives.html#roles-directives). Quick links: - [`sphinx.ext.doctest`](https://www.sphinx-doc.org/en/master/usage/extensions/doctest.html) (source: [sphinx/ext/doctest.py](https://github.com/sphinx-doc/sphinx/blob/5.x/sphinx/ext/doctest.py)) - Related: https://github.com/Erotemic/xdoctest/issues/68 - [Also referenced](https://github.com/executablebooks/MyST-Parser/discussions/601) - as of today at v0.18.0 these are parsed as [`nodes.literal_block`](https://pydoc.dev/docutils/latest/docutils.nodes.literal_block.html) not [`nodes.doctest_block`](https://pydoc.dev/docutils/latest/docutils.nodes.doctest_block.html)...
Assume `pyproject.toml`: ```toml [tool.pytest.ini_options] addopts = "--reruns 2" ``` # Current behavior Right now, passing `--exitfirst` / `-x` will rerun twice. # Better: `--reruns-on-exitfirst 0` This way, the user can...
Assume `pyproject.toml`: ```toml [tool.pytest.ini_options] addopts = "--reruns 2" ``` # Current behavior Right now, passing `--pdb` will raise: ``` ERROR: --reruns incompatible with --pdb ``` # Better: Assume `--reruns 0`...
Hi! If anyone is able to help out with maintenance, QA, writing tests, reviewing the pull request list, and triaging issues, this would be helpful! At this time I'm a...
My bad on 7303dff15d53ec1c0ca16c6bd1806930adc88687 5e81712b65d15bdb3cea6dc71b6c33632850a48c 6122cdd01eca6fc1fdab59693a77d9997109ff8b. I am new to jazzband projects and realized I *can* push to master, but *can't* amend+force. I rarely make this mistake, but it happened...
source: https://docs.djangoproject.com/en/2.0/releases/2.0/ > Following the release of Django 2.0, we suggest that third-party app authors drop support for all versions of Django prior to 1.11. At that time, you should...
Assume #606, GraphQL requests aren't possible to distinguish at this point. Sometimes a path has nuance to it, e.g. business logic inside the [`HttpRequest`](https://docs.djangoproject.com/en/4.1/ref/request-response/#httprequest-objects) can be used to label the...