Josh
Josh
## Description `using T = some::type` statements can "leak" out of the doctest test in some conditions. When doctest is disabled, this can cause warnings/errors. ### Steps to reproduce From...
I'm observing this on Linux. Adding some print statements to [the file watcher thread](https://github.com/abey79/vsketch/blob/master/vsketch_cli/threads.py#L66-L86): ```python class FileWatcherThread(QThread): sketchFileChanged = Signal() def __init__(self, path: pathlib.Path, *args: Any, **kwargs: Any): super().__init__(*args, **kwargs)...
**Is your feature request related to a problem? Please describe.** Multiple people on my team use avocado 99.0 on a shared development server. Only one of us can run a...
This code: ```cpp 1 #include "hip/hip_runtime.h" 2 3 template 4 __global__ 5 void callLambda(L l) { 6 l(); 7 } 8 9 int main(const int argc, const char** argv) {...
**Is your feature request related to a problem? Please describe.** I am using avocado to test software that interfaces with 3rd party software. The 3rd party software sometimes comes with...