-
As part of the process of designing task packages, I find myself providing some doctest of style:
```python
"""
Examples
--------
>>> task = MyTask(...)
>>> task.cmdline
'cmd ...'
"""
```…
-
I searched a way to use `requests_mock` in my `DocFileTests` and tried it with fixtures (as i do have `setUp` and `tearDown` for the `DocFileSuite` as well) as outlined in https://requests-mock.readth…
frisi updated
5 years ago
-
See
[https://lists.gnu.org/archive/html/bug-m4/2021-03/msg00013.html](https://lists.gnu.org/archive/html/bug-m4/2021-03/msg00013.html)
[https://github.com/doctest/doctest/issues/473](https://github…
-
```
What steps will reproduce the problem?
1. Run the commands as listed in the create_hit.doctest document
2. Fail to produce identical output at line 36/37 (status == false)
What is the expected ou…
-
Tried to run the test-suite and encountered following issues:
```
make test-maxima
```
Output:
```bash
env SAGE_PATH="/media/Data/Projects/Other/forks/fuchsia" \
sage -python -munittest -fv …
-
Checked modules are complete.
- [ ] affine
- [ ] contrast
- [ ] corners
- [ ] definitions
- [ ] drawing
- [ ] edges
- [ ] filter
- [ ] gradients
- [ ] haar
- [ ] hog
- [x] hough
- [x] int…
-
This issue is to track support for Cygwin - the Linux environment on Windows
I've added makefiles support to for a cygwin build that I'd like to send as a PR - should it be for the tbb_2019 branch …
-
I introduced some functions without doctests in #11716. This ticket tries to add the missing doctests to the these and other functions in that file.
This is part of doctest meta-ticket #12024.
Dep…
-
Great tool,will it support plain JavaScript comment?like [jsdoc-test](https://github.com/yamadapc/jsdoctest) or [doctest in python](https://docs.python.org/3/library/doctest.html)
-
>>> import numpy # doctest:+SKIP
>>> a = numpy.arange(10) # doctest:+SKIP
>>> expr = sin(x)
>>> f = lambdify(x, expr, "numpy") # doctest:+SKIP
>>> f(a) # doctest:+SKIP
Exception in SymPy Live…